-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "chaplain",
"version": "0.3.5",
"description": "A testing tool for effortless regression tests of HTTP services.",
"main": "dist/lib/index.js",
"bin": {
"chaplain": "bin/chaplain-cli.js"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"compile": "rm -rf dist && babel -q lib --out-dir dist/lib && babel -q test --out-dir dist/test && babel -q test-chaplain --out-dir dist/test-chaplain",
"pretest": "npm run compile",
"prepublish": "npm run compile",
"test": "CHAPLAIN_TEST=true mocha -R dot --recursive dist/test && ./bin/chaplain-cli.js -f dist/test-chaplain/chaplain.tests.js",
"test-chaplain-only": "./bin/chaplain-cli.js -f dist/test-chaplain/chaplain.tests.js",
"test-cov": "CHAPLAIN_TEST=true mocha -R dot --recursive test",
"coverage": "nyc --require babel-register npm run test-cov && nyc report --reporter=html && nyc report --reporter=lcov",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/krajzeg/chaplain"
},
"keywords": [
"testing",
"regression",
"http",
"bless",
"html",
"json",
"automated"
],
"author": "Jakub Wasilewski <[email protected]> (http://wasyl.eu)",
"license": "ISC",
"bugs": {
"url": "https://github.com/krajzeg/chaplain/issues"
},
"homepage": "https://github.com/krajzeg/chaplain",
"dependencies": {
"bluebird": "^3.0.6",
"chalk": "^1.1.3",
"diff": "^2.2.3",
"good-guy-http": "^1.7.1",
"hiff": "^0.3.0",
"inquirer": "^1.0.3",
"jsondiffpatch": "^0.1.43",
"jsonpath": "^0.2.3",
"lodash": "^4.13.1",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.4.1",
"coveralls": "^2.11.9",
"del": "^2.1.0",
"express": "^4.13.4",
"jshint": "^2.9.2",
"mocha": "^2.5.3",
"nyc": "^6.4.4"
}
}