forked from luontola/tdd-mooc-small-steps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 839 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
{
"name": "lift-pass-pricing",
"version": "1.0.0",
"description": "Lift-Pass-Pricing refactoring kata",
"readme": "README.md",
"license": "ISC",
"main": "index.mjs",
"scripts": {
"start": "node .",
"test": "mocha --recursive test/**/*.spec.mjs",
"autotest": "npm test -- --watch",
"tcr": "node tcr.mjs",
"format": "prettier --write ."
},
"mocha": {
"parallel": true
},
"engines": {
"node": ">=16",
"npm": ">=7"
},
"dependencies": {
"@js-temporal/polyfill": "^0.3.0",
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.0",
"@types/supertest": "^2.0.11",
"chai": "^4.3.6",
"express": "^4.17.3",
"mocha": "^9.2.1",
"prettier": "^2.5.1",
"supertest": "^6.2.2"
},
"devDependencies": {
"chokidar": "^3.5.3"
}
}