-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
52 lines (52 loc) · 1.13 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
45
46
47
48
49
50
51
52
{
"name": "mocha-cakes-2",
"version": "3.3.0",
"description": "A Mocha BDD integration",
"main": "mocha-cakes.js",
"typings": "./mocha-cakes.d.ts",
"scripts": {
"test": "npm run test:cli && npm run test:api",
"test:cli": "MOCHA_INTERFACE=cli mocha ./test/**/*tests.js",
"test:api": "MOCHA_INTERFACE=api node ./test/run-api.js",
"test:watch": "mocha ./test/**/*tests.js --watch -R dot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iensu/mocha-cakes-2.git"
},
"keywords": [
"mocha",
"cakes",
"bdd",
"tdd",
"test",
"node",
"javascript",
"nodejs",
"gherkin",
"cucumber"
],
"author": "Jens Östlund (iensu)",
"license": "ISC",
"bugs": {
"url": "https://github.com/iensu/mocha-cakes-2/issues"
},
"engines": {
"node": ">= 4.0.0"
},
"files": [
"mocha-cakes.js",
"mocha-cakes.d.ts",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/iensu/mocha-cakes-2#readme",
"peerDependencies": {
"mocha": ">= 4"
},
"devDependencies": {
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"mocha": "^4.0.1"
}
}