-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 913 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 913 Bytes
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
{
"name": "mocha-pipe",
"version": "0.0.7",
"description": "Build a test pipeline with mocha",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=lcov mocha",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/djorg83/mocha-pipe.git"
},
"keywords": [
"mocha",
"mocha-pipe",
"test",
"pipe",
"pipeline",
"async"
],
"author": "Daniel Jorgensen",
"license": "MIT",
"bugs": {
"url": "https://github.com/djorg83/mocha-pipe/issues"
},
"homepage": "https://github.com/djorg83/mocha-pipe#readme",
"dependencies": {
"bluebird": "^3.5.0"
},
"peerDependencies": {
"mocha": ">=3.5.0"
},
"devDependencies": {
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"coveralls": "^2.13.1",
"mocha": "^3.5.0",
"nyc": "^11.1.0"
}
}