-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
54 lines (54 loc) · 1.16 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
50
51
52
53
54
{
"name": "klotski",
"version": "2.1.0",
"description": "The JavaScript algorithm for solving klotski game.",
"main": "src/klotski.js",
"repository": "https://github.com/jeantimex/klotski.git",
"author": "jeantimex <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint src",
"test": "npm run lint && nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "gulp",
"release": "node ./release.js",
"demo": "node src/demo.js"
},
"nyc": {
"watermarks": {
"lines": [
80,
95
],
"functions": [
80,
95
],
"branches": [
70,
95
],
"statements": [
80,
95
]
}
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"eslint": "^6.2.2",
"eslint-plugin-prettier": "^3.1.0",
"gulp": "^4.0.2",
"gulp-banner": "^0.1.3",
"gulp-rename": "^1.4.0",
"gulp-uglify": "^3.0.2",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"pump": "^3.0.0"
},
"dependencies": {
"inquirer": "^7.0.0"
}
}