-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.13 KB
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": "battleship-nodejs",
"version": "1.0.0",
"description": "Battleship with Node JS",
"main": "index.js",
"scripts": {
"start": "node index.js",
"mocha": "mocha \"Battleship_Tests/*.js\" \"GameController_Tests/*.js\"",
"cucumber": "cucumber-js ./GameController_ATDD",
"test": "npm run mocha && npm run cucumber"
},
"author": "",
"license": "ISC",
"dependencies": {
"applicationinsights": "^3.7.0",
"beepbeep": "^1.3.0",
"cli-color": "^2.0.4",
"enum": "^3.0.4",
"mocha": "^11.7.1",
"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": "^12.1.0",
"@eslint/js": "^9.37.0",
"@types/jest": "^30.0.0",
"cucumber-junit": "^1.5.0",
"eslint": "^9.37.0",
"eslint-plugin-jest": "^29.0.1",
"globals": "^16.4.0",
"mocha-junit-reporter": "^2.2.1"
}
}