-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.36 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.36 KB
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
{
"name": "node-red-contrib-cache",
"version": "2.0.3",
"description": "Node-RED nodes for memory cache",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CANDY-LINE/node-red-contrib-cache.git"
},
"author": "Daisuke Baba <baba.daisuke@gmail.com>",
"bugs": {
"url": "https://github.com/CANDY-LINE/node-red-contrib-cache/issues"
},
"scripts": {
"build": "grunt build",
"test": "grunt test",
"clean": "grunt clean",
"prepare": "grunt build"
},
"homepage": "https://github.com/CANDY-LINE/node-red-contrib-cache#readme",
"keywords": [
"node-red",
"cache",
"CANDY RED",
"CANDY EGG"
],
"devDependencies": {
"babel": "^5.8.34",
"babel-plugin-uglify": "^1.0.2",
"chai": "^3.3.0",
"grunt": ">=1.0.1 <2.0.0",
"grunt-babel": "5.0.3",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^0.11.3",
"grunt-mocha-test": "^0.12.7",
"grunt-run": "^0.5.2",
"jshint": "^2.9.1",
"jshint-stylish": "^2.0.1",
"mocha": "^2.3.3",
"node-red": "^0.18.7",
"sinon": "^1.17.1",
"time-grunt": "^1.2.2",
"uglify-js": "^2.6.1"
},
"dependencies": {
"node-cache": "^4.2.0",
"source-map-support": "^0.4.2"
},
"node-red": {
"nodes": {
"cache": "dist/cache.js"
}
}
}