-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.1 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
{
"name": "node-red-csv-import",
"version": "1.0.0",
"description": "examples of importing csv data to node-red",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": ".\\node_modules\\.bin\\istanbul cover -x \"lib/**/**.spec.js\" .\\node_modules\\mocha\\bin\\_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tscott-au/node-red-csv-import.git"
},
"keywords": [
"node-red",
"csv"
],
"author": "Tim Scott",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tscott-au/node-red-csv-import/issues"
},
"homepage": "https://github.com/tscott-au/node-red-csv-import#readme",
"globalDependencies": {
"node-red": "^0.16.2",
"node-red-contrib-amqp": "^0.4.5",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"mocha": "^3.3.0",
"standard": "^10.0.2"
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"mocha": "^3.3.0",
"standard": "^10.0.2"
},
"standard": {
"env": [
"mocha"
]
},
"dependencies": {
"node-red-contrib-fs": "^1.0.1"
}
}