-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
44 lines (44 loc) · 957 Bytes
/
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
{
"name": "battleship-nodejs",
"version": "1.0.0",
"description": "Battleship with Node JS",
"main": "index.js",
"scripts": {
"mocha": "mocha ./**/*Tests.js",
"cucumber": "./node_modules/.bin/cucumber-js ./GameController_ATDD",
"test": "npm run mocha && npm run cucumber"
},
"author": "",
"license": "ISC",
"dependencies": {
"applicationinsights": "^2.5.1",
"beepbeep": "^1.3.0",
"cli-color": "^2.0.1",
"enum": "^3.0.4",
"mocha": "^9.2.2",
"prompt-sync": "^4.2.0",
"readline-sync": "^1.4.10"
},
"mocha": {
"diff": true,
"extension": [
"js"
],
"opts": false,
"reporter": "spec",
"slow": 75,
"timeout": 2000,
"ui": "bdd",
"watch-files": [
"**.Tests/**.js"
],
"watch-ignore": [
"lib/vendor"
]
},
"devDependencies": {
"@cucumber/cucumber": "^7.3.2",
"cucumber-junit": "^1.7.1",
"mocha-junit-reporter": "^2.0.2"
}
}