-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
57 lines (57 loc) · 1.23 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
55
56
57
{
"name": "nonogram-solver",
"version": "2.0.0",
"description": "Solver / formatter for Nonograms (Griddlers, Picross, Hanjie, Japanese Crosswords)",
"keywords": [
"nonogram",
"griddler",
"picross",
"hanjie",
"japanese crossword",
"solve",
"solver",
"puzzle",
"game",
"serialization"
],
"homepage": "https://github.com/thomasr/nonogram-solver",
"license": "Apache-2.0",
"author": "Thomas Rosenau <[email protected]>",
"files": [
"src",
"doc/!(*.svg)",
"test",
"puzzles/*.json",
"puzzles/**/*.js"
],
"main": "src/index.js",
"bin": {
"nonogram-solver": "src/cli.js",
"nonogram-dl-samples": "puzzles/nonograms.org/downloadSamples.js"
},
"directories": {
"doc": "doc",
"test": "test"
},
"repository": "thomasr/nonogram-solver",
"scripts": {
"test": "mocha",
"coverage": "nyc --all --reporter=text --reporter=lcov npm test"
},
"dependencies": {
"assert": "^1.4.1",
"commander": "^2.11.0",
"left-pad": "^1.1.3",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"eslint": "^4.11.0",
"expect": "^21.2.1",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"rimraf": "^2.6.2"
},
"engines": {
"node": ">=8.0.0"
}
}