-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.01 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.01 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
{
"name": "booking-tdd.js",
"version": "0.1.0",
"description": "Look, no Mocks! Functional TDD with JavaScript (Node.js)",
"license": "MIT",
"author": {
"name": "Alex Masterov",
"email": "alex.masterow@gmail.com"
},
"main": "./bin/www.js",
"engines": {
"node": ">=9.0.0"
},
"scripts": {
"start": "node ./bin/www",
"test": "npx mocha test/**/*.test.js",
"test-report": "npx nyc --reporter=html --reporter=text mocha test/**/*.test.js",
"coverage": "npx nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls"
},
"dependencies": {
"ajv": "6.5.2",
"awilix": "3.0.9",
"body-parser": "1.18.3",
"bristol": "0.4.0",
"dotenv": "6.0.0",
"express": "4.16.3",
"fluture": "9.0.1",
"folktale": "2.3.0",
"mongodb": "3.1.3"
},
"devDependencies": {
"coveralls": "3.0.2",
"mocha": "5.2.0",
"nyc": "12.0.2"
},
"directories": {
"test": "test/"
},
"nyc": {
"cache": false,
"reporter": [],
"include": ["src/**/*.js"]
}
}