-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
58
59
60
61
62
63
{
"name": "sudoku-generator",
"version": "0.0.0",
"description": "Sudoku generator for node",
"author": {
"name": "David Lai",
"email": "[email protected]",
"url": "dlai0001.com"
},
"main": "index.js",
"repository": "https://github.com/dlai0001/sudoku-generator",
"license": "MIT",
"files": [
"index.js",
"sudoku-generator.js"
],
"keywords": [
"sudoku-generator",
"Sudoku"
],
"dependencies": {
"dependable": "^0.2.5",
"lodash": "^3.6.0",
"meow": "^3.1.0",
"shuffle-array": "^0.1.0"
},
"devDependencies": {
"blanket": "^1.1.6",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-cli": "^1.12.0",
"grunt-mocha-cov": "^0.4.0",
"jshint-stylish": "^1.0.1",
"load-grunt-tasks": "^3.1.0",
"mocha-lcov-reporter": "0.0.2",
"should": "^5.2.0",
"time-grunt": "^1.1.0",
"travis-cov": "^0.2.5"
},
"scripts": {
"test": "grunt travis --verbose"
},
"bin": {
"sudoku-generator": "cli.js"
},
"config": {
"blanket": {
"spec-cov": {
"threshold": 80,
"localThreshold": 80
},
"pattern": [
"src"
],
"data-cover-never": "test"
},
"travis-cov": {
"threshold": 80
}
}
}