-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 988 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 988 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
{
"name": "wwcloudfunctions",
"version": "1.0.0",
"license": "IBM",
"main": "Webhook.js",
"repository": {
"type": "git",
"url": "https://github.ibm.com/scottchapman/WWCloudFunctions.git"
},
"scripts": {
"unit": "(cd tests/unit; mocha *.js)",
"old-coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"cover": "nyc --reporter=text --reporter=lcov npm test",
"test": "nyc npm run unit",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"jsonwebtoken": "^8.1.0",
"mustache": "^2.3.0",
"openwhisk": "^3.11.0",
"request": "^2.83.0",
"superagent": "^3.8.2"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.4",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^9.2.3",
"nyc": "^11.6.0",
"sinon": "^4.4.6"
},
"nyc": {
"include": [
"runtimes/nodejs/*.js"
]
}
}