-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 901 Bytes
/
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
{
"name": "rmgr",
"version": "0.3.1",
"description": "release resources gracefully",
"main": "index.js",
"scripts": {
"ci": "npm run lint && npm run cover",
"test": "mocha --recursive test",
"lint": "eslint index.js",
"cover": "nyc npm t"
},
"keywords": [
"release",
"resources",
"gracefully",
"graceful"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rmdm/rmgr.git"
},
"author": "rmdm",
"license": "ISC",
"devDependencies": {
"assert-match": "^1.1.1",
"coveralls": "^3.0.2",
"eslint": "^5.10.0",
"express": "^4.16.4",
"ioredis": "^4.3.0",
"mocha": "^5.2.0",
"mongodb": "^3.1.10",
"nyc": "^13.0.1",
"sinon": "^6.3.4"
},
"dependencies": {
"promback": "^1.0.1",
"timeoutable-wrapper": "^0.2.0"
},
"files": [
"index.js"
],
"engines": {
"node": ">=8"
}
}