-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.41 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
{
"name": "integration-tester",
"main": "dist/lib/index.js",
"version": "0.2.0",
"description": "API Test execution tool that can execute async operations in order and run assertion on the payloads.",
"engines": {
"node": ">=4.2.0",
"npm": "^3.0.0"
},
"nyc": {
"exclude": [
"**/*.spec.js",
"**/bootstrap.js",
"dist"
],
"report-dir": "./spec/reports/coverage/"
},
"scripts": {
"prepublish": "npm run build",
"coverage-report": "node node_modules/nyc/bin/nyc.js --reporter cobertura --reporter html --require babel-core/register --require ./src/spec/bootstrap.js node_modules/mocha/bin/_mocha --bail --recursive 'src/spec/unit'",
"check-coverage": "node node_modules/nyc/bin/nyc.js check-coverage --lines 80 --functions 80 --branches 50",
"build": "rm -rf dist/; node_modules/babel-cli/bin/babel.js src --out-dir dist --copy-files --source-maps",
"jshint": "node node_modules/eslint/bin/eslint.js 'node_modules/eslint-friendly-formatter' ./src/spec ./src/lib",
"component-test": "multi='tap=- xunit=spec/reports/xunit.xml' node node_modules/mocha/bin/mocha --opts ./mocha.opts | node_modules/faucet/bin/cmd.js",
"component-test-no-faucet": "multi='tap=- xunit=spec/reports/xunit.xml' node node_modules/mocha/bin/mocha --opts ./mocha.opts",
"test": "cat dist/spec/run_all_the_tests.txt && npm run component-test;",
"local-test": "npm run component-test-no-faucet",
"build:watch": "watch 'npm run build && npm run jshint && npm run local-unit-test' src"
},
"dependencies": {
"bluebird": "^3.4.0",
"death": "^1.0.0",
"faucet": "0.0.1",
"glob": "^7.0.3",
"kafka-node": "0.3.1",
"superagent": "latest",
"superagent-as-promised": "latest",
"tap-xunit": "^1.3.1",
"tape": "^4.5.1",
"test-designer-gui": "^0.0.4",
"uuid": "^2.0.2"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-istanbul": "^0.8.0",
"babel-node-debug": "^1.3.0",
"babel-plugin-rewire": "^1.0.0-rc-3",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"chai": "3.5.0",
"chai-as-promised": "^5.3.0",
"chai-spies": "0.7.1",
"eslint": "^1.10.3",
"eslint-friendly-formatter": "^1.2.2",
"mocha": "2.4.5",
"mocha-multi": "0.9.0",
"nyc": "^6.4.4",
"proxyquire": "^1.7.9",
"remap-istanbul": "^0.6.4",
"sinon": "1.17.3",
"sinon-as-promised": "4.0.0",
"sinon-chai": "2.8.0"
}
}