-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
74 lines (74 loc) · 1.71 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "node-red-admin",
"version": "0.2.2",
"description": "The Node-RED admin command line interface",
"homepage": "https://nodered.org",
"bugs": {
"url": "https://github.com/node-red/node-red-admin/issues/"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-admin.git"
},
"main": "lib/index.js",
"engines": {
"node": ">=8"
},
"contributors": [
{
"name": "Nick O'Leary"
},
{
"name": "Anna Thomas"
}
],
"preferGlobal": "true",
"scripts": {
"test": "./node_modules/.bin/mocha "
},
"dependencies": {
"axios": "0.19.2",
"bcryptjs": "^2.4.3",
"cli-table": "^0.3.1",
"colors": "^1.4.0",
"minimist": "^1.2.5",
"read": "^1.0.7"
},
"devDependencies": {
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-jshint": "^2.1.0",
"grunt-simple-mocha": "^0.4.1",
"mocha": "^7.1.0",
"should": "^13.2.3",
"sinon": "1.17.7"
},
"optionalDependencies": {
"bcrypt": "3.0.8"
},
"bin": {
"node-red-admin": "node-red-admin.js"
},
"mocha": {
"spec:": "test/**/*.spec.js",
"diff": true,
"extension": [
"js"
],
"opts": false,
"package": "./package.json",
"reporter": "spec",
"slow": 75,
"timeout": 2000,
"ui": "bdd",
"recursive": "true",
"watch-files": [
"lib/**/*.js",
"test/**/*.js"
],
"watch-ignore": [
"lib/vendor"
]
}
}