-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.69 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.69 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "cream",
"version": "1.14.0",
"description": "Payments microservice for Runnable",
"main": "index.js",
"scripts": {
"lint": "standard --verbose",
"test": "npm run lint && npm run coverage",
"coverage": "NODE_PATH=./lib NODE_ENV=test istanbul cover _mocha -- --recursive test && npm run coverage-check",
"coverage-unit": "NODE_PATH=./lib NODE_ENV=test istanbul cover _mocha --dir coverage-unit -- --recursive test/unit",
"coverage-functional": "NODE_PATH=./lib NODE_ENV=test istanbul cover _mocha --dir coverage-functional -- --recursive test/functional",
"coverage-integration": "NODE_PATH=./lib NODE_ENV=test istanbul cover _mocha --dir coverage-integration -- --recursive test/integration",
"coverage-check": "istanbul check-coverage --statement 100 --functions 100 --branches 100 --lines 100 && echo 'Coverage check successful!'",
"test-unit": "NODE_PATH=./lib NODE_ENV=test mocha --recursive test/unit/",
"test-integration": "NODE_PATH=./lib NODE_ENV=test mocha --recursive test/integration",
"test-integration-slow": "RUN_SLOW_TESTS=true NODE_PATH=./lib NODE_ENV=test mocha --recursive test/integration",
"start-worker": "NODE_PATH=./lib node lib/workers",
"start-http": "NODE_PATH=./lib node lib/http",
"migrate-organizations": "NODE_PATH=./lib node scripts/migrate-organizations"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeNow/CREAM.git"
},
"author": "",
"directories": {
"test": "test"
},
"engines": {
"node": ">=4.4.5 <5",
"npm": ">=2.14.7"
},
"standard": {
"globals": [
"describe",
"xdescribe",
"it",
"xit",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"bugs": {
"url": "https://github.com/CodeNow/CREAM/issues"
},
"homepage": "https://github.com/CodeNow/CREAM#readme",
"dependencies": {
"101": "^1.6.2",
"@runnable/api-client": "^7.5.0",
"@runnable/big-poppa-client": "^0.5.0",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"bunyan": "^1.8.1",
"error-cat": "^3.0.0",
"express": "^4.14.0",
"joi": "^9.0.4",
"keypather": "^2.0.0",
"loadenv": "^2.2.0",
"lodash": "^4.15.0",
"moment": "^2.14.1",
"monitor-dog": "^1.5.0",
"ponos": "^5.6.1",
"stripe": "^4.9.0"
},
"devDependencies": {
"chai": "^3.5.0",
"csv-stringify": "^1.0.4",
"github": "^9.2.0",
"istanbul": "^0.4.5",
"mehpi": "git+ssh://git@github.com:runnable/mehpi#v2.0.0",
"mocha": "^2.5.3",
"request-promise": "^4.1.1",
"sinon": "^1.17.5",
"sinon-as-promised": "^4.0.2",
"standard": "^7.1.2",
"superagent": "^1.8.4",
"superagent-promise-plugin": "^3.2.0"
}
}