-
Notifications
You must be signed in to change notification settings - Fork 888
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.43 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "piskel",
"version": "0.15.2-SNAPSHOT",
"description": "Pixel art editor",
"author": "Julian Descottes <julian.descottes@gmail.com>",
"contributors": [
"Vincent Renaudin"
],
"homepage": "http://github.com/piskelapp/piskel",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "http://github.com/piskelapp/piskel.git"
},
"files": [
"dest/prod",
"misc/scripts/piskel-root"
],
"bin": {
"piskel-root": "./misc/scripts/piskel-root",
"piskel-cli": "./cli/index.js"
},
"main": "./dest/prod/index.html",
"scripts": {
"dev": "grunt play",
"prod": "grunt serve",
"prod:test": "grunt serve-test",
"format": "grunt eslint --fix",
"preversion": "grunt test build",
"postversion": "git push && git push --tags && npm publish",
"release": "grunt && node ./bin/copy-to-piskel-website",
"release-piskel-web": "grunt && node ./bin/copy-to-piskel-web",
"build:desktop": "grunt desktop",
"build:mac": "grunt desktop-mac",
"start:nw": "grunt build && nw",
"e2e": "npx playwright test",
"e2e:interactive": "npx playwright test --ui",
"unit-tests": "karma start",
"unit-tests:watch": "karma start --auto-watch --no-single-run",
"test": "npm run unit-tests; npm run e2e",
"test-ci": "bash ./run-test-ci.sh"
},
"devDependencies": {
"@playwright/test": "^1.52.0",
"dateformat": "4.5.1",
"fs-extra": "10.0.0",
"gifuct-js": "^2.1.2",
"grunt": "1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-connect": "3.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-jshint": "3.0.0",
"grunt-contrib-uglify": "5.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "23.0.0",
"grunt-include-replace": "5.0.0",
"grunt-jscs": "3.0.1",
"grunt-karma": "4.0.2",
"grunt-leading-indent": "0.2.0",
"grunt-nw-builder": "4.13.0",
"grunt-replace": "2.0.2",
"grunt-spritesmith": "^6.9.0",
"jasmine-core": "3.8.0",
"karma": "6.3.4",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "4.0.1",
"load-grunt-tasks": "5.1.0",
"png-ts": "^0.0.3",
"puppeteer": "^24.10.0",
"rmdir": "1.2.0",
"typescript": "^5.8.3"
},
"window": {
"title": "Piskel",
"icon": "dest/prod/logo.png",
"toolbar": false,
"width": 1000,
"height": 700
},
"dependencies": {
"minimist": "^1.2.5"
}
}