-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 831 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
{
"name": "node-red-embedded-start",
"version": "1.0.0",
"description": "Enables waiting for flows to have started for embedded Node-RED applications",
"main": "index.js",
"scripts": {
"test": "tape test/01.js && tape test/02.js",
"lint": "eslint .",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hlapp/node-red-embedded-start.git"
},
"keywords": [
"node-red",
"embedded",
"iot"
],
"author": "Hilmar Lapp <hilmar@lappland.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hlapp/node-red-embedded-start/issues"
},
"homepage": "https://github.com/hlapp/node-red-embedded-start#readme",
"devDependencies": {
"eslint": "^4.17.0",
"node-red": "^0.18.0",
"sinon": "^4.0.0",
"tape": "^4.8.0"
}
}