forked from apigee-127/bagpipes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 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
{
"name": "bagpipes",
"version": "0.2.1",
"description": "Less code, more flow. Let's dance!",
"main": "lib/index.js",
"scripts": {
"test": "node_modules/mocha/bin/_mocha -u exports -R spec test/*",
"coverage": "node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -u exports -R spec test/*",
"coveralls": "node node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec test/* && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/apigee-127/bagpipes.git"
},
"keywords": [
"swagger",
"plumbing",
"pipes"
],
"author": "Scott Ganyo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apigee-127/bagpipes/issues"
},
"homepage": "https://github.com/apigee-127/bagpipes",
"dependencies": {
"async": "^1.4.2",
"debug": "^2.1.2",
"jspath": "^0.3.1",
"lodash": "^4.17.10",
"machinepack-http": "^7.0.3",
"mustache": "^2.1.3",
"pipeworks": "^1.3.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"istanbul": "^0.4.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.0.0",
"proxyquire": "^2.1.1",
"should": "^7.1.0",
"supertest": "^3.1.0"
}
}