-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "sudoku",
"version": "0.1.0",
"description": "A Sudoku game with terminal client",
"license": "MIT",
"repository": "calazans10/sudoku",
"author": {
"name": "Jeferson Farias Calazans",
"email": "calazans10@gmail.com",
"url": "calazans10.com"
},
"contributors": [
{
"name": "Renan de Azevedo",
"email": "renan.razevedo@gmail.com",
"url": "renandeazevedo.com"
},
{
"name": "Camila Inés Sosa",
"email": "camila_ines_sosa@hotmail.com",
"url": "github.com/camilasosa96"
}
],
"engines": {
"node": ">=6"
},
"bugs": {
"url": "https://github.com/calazans10/sudoku/issues"
},
"homepage": "https://github.com/calazans10/sudoku#readme",
"bin": {
"sudoku": "src/clients/terminal.js"
},
"scripts": {
"coverage": "nyc --reporter=html --timeout=30000 npm test",
"test": "mocha test/**/*.spec.js",
"watch": "mocha --watch test/**/*.spec.js"
},
"dependencies": {
"chalk": "^3.0.0",
"cli-table": "^0.3.1",
"lodash": "^4.17.20"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.6.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1"
}
}