-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.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
{
"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": "mocha -r esm -r pzpr-canvas -r source-map-support/register -R progress --recursive test",
"prepublishOnly": "npm test"
},
"devDependencies": {
"del-cli": "^2.0.0",
"eslint": "^5.16.0",
"grunt": "^1.0.4",
"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.1.4",
"prettier": "^1.19.1",
"rollup": "^2.6.0",
"rollup-plugin-terser": "^5.3.0"
},
"dependencies": {
"esm": "^3.2.25",
"pzpr-canvas": "^0.8.2",
"source-map-support": "^0.5.12"
}
}