-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "pzpr",
"version": "0.11.1",
"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 && grunt default",
"release": "npm run clean && eslint --cache --quiet src && grunt release",
"clean": "del dist/* pzpr-*.{zip,tar.gz,tar.bz2,tgz}",
"lint": "eslint src test sample",
"test": "eslint --quiet src test && mocha -R progress --recursive test",
"prepublishOnly": "npm test"
},
"devDependencies": {
"del-cli": "^2.0.0",
"eslint": "^5.16.0",
"grunt": "^1.0.1",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-uglify": "^2.0.0",
"grunt-newer": "^1.1.1",
"mocha": "^6.1.4"
},
"dependencies": {
"pzpr-canvas": "^0.8.2"
}
}