-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "meshblu-core-task-check-token-cache",
"version": "1.1.3",
"description": "Meshblu Core Check Token Cache",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "nyc npm test",
"mocha:json": "env NPM_ENV=test mocha --reporter json > coverage/mocha.json",
"test:watch": "mocha -w -R mocha-multi --reporter-options spec=-,mocha-osx-reporter=-"
},
"repository": {
"type": "git",
"url": "git+https://github.com/octoblu/meshblu-core-task-check-token-cache.git"
},
"author": "Octoblu, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/octoblu/meshblu-core-task-check-token-cache/issues"
},
"homepage": "https://github.com/octoblu/meshblu-core-task-check-token-cache#readme",
"keywords": [
"meshblu"
],
"dependencies": {
"meshblu-core-manager-token": "^7.6.0"
},
"devDependencies": {
"chai": "^3.4.0",
"fakeredis": "^2.0.0",
"mocha": "^3.2.0",
"mocha-multi": "^0.10.0",
"mocha-osx-reporter": "^0.1.2",
"nyc": "^10.2.0",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"uuid": "^3.0.1"
},
"nyc": {
"cache": true,
"reporter": [
"text-summary",
"lcov",
"json"
],
"extension": [
".coffee"
]
}
}