-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
49 lines (49 loc) · 1.38 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
49
{
"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": ">= 14.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": "mocha -r source-map-support/register -R progress --recursive test",
"coverage": "nyc --reporter=lcov npm run test",
"prepublishOnly": "npm test"
},
"devDependencies": {
"del-cli": "^4.0.1",
"eslint": "^8.43.0",
"grunt": "^1.5.3",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^5.2.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^1.19.1"
},
"dependencies": {
"pzpr-canvas": "0.8.2",
"source-map-support": "^0.5.21"
}
}