forked from robx/pzprjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.37 KB
/
package.json
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
{
"name": "pzpr",
"version": "0.12.0",
"description": "Scripts for handling puzzle objects",
"main": "./index.js",
"directories": {
"test": "test"
},
"keywords": [
"puzzle",
"HTML5"
],
"author": "sabo2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sabo2/pzprjs"
},
"homepage": "https://github.com/sabo2/pzprjs",
"engines": {
"node": ">= 5.6.0"
},
"scripts": {
"build": "eslint --cache --quiet src src-ui && \"./git-hash.sh\" && grunt default",
"release": "npm run clean && eslint --cache --quiet src && grunt release",
"clean": "del dist/* pzpr-*.{zip,tar.gz,tar.bz2,tgz}",
"format": "prettier --write \"{src,src-ui,test}/**/*.{js,css}\"",
"check-format": "prettier --check \"{src,src-ui,test}/**/*.{js,css}\"",
"lint": "eslint src src-ui test sample",
"test": "eslint --quiet src src-ui test sample && mocha -r source-map-support/register -R progress --recursive test",
"prepublishOnly": "npm test"
},
"devDependencies": {
"del-cli": "^2.0.0",
"eslint": "^5.16.0",
"grunt": "^1.1.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-newer": "^1.1.1",
"mocha": "^6.2.3",
"prettier": "^1.19.1"
},
"dependencies": {
"pzpr-canvas": "^0.8.2",
"source-map-support": "^0.5.17"
}
}