-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"dependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^2.13.1",
"git-pre-commit": "^2.1.3",
"istanbul": "^0.4.5",
"mocha": "^3.5.2",
"mocha-lcov-reporter": "^1.3.0"
},
"name": "node-bdd-cookie-cutter",
"version": "1.0.0",
"description": "Behavior Driven Testing template for Node.js",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "mocha ./lib/**/*.spec.js && yarn run cover",
"preinstall": "rm -rf node_modules/app || true",
"postinstall": "ln -s ../ node_modules/app",
"cover": "./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha ./lib/*.js ./lib/**/*.js && echo \"View report: coverage/lcov-report/index.html\"",
"coveralls": "yarn run cover && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls -v",
"precommit": "yarn test"
},
"repository": {
"type": "git",
"url": "git@github.com/f1lt3r/node-bdd-cookie-cutter.git"
},
"keywords": [
"bdd",
"tdd",
"coverage",
"promises",
"chai",
"istanbul",
"coveralls",
"travis",
"git-pre-commit",
"lcov"
],
"author": "f1lt3r",
"license": "MIT"
}