forked from node-red/node-red-debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 928 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 928 Bytes
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
{
"name": "node-red-debugger",
"version": "1.0.0",
"description": "A flow debugger for Node-RED 2.x",
"scripts": {
"build": "(tsc || exit 1) && npm run tslint && npm run copyAssets",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"copyAssets": "node scripts/copy-static-assets.js",
"dev": "nodemon --exec 'npm run build' -i dist -e 'ts html'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Nick O'Leary <nick.oleary@gmail.com>",
"license": "Apache-2",
"node-red": {
"version": ">=2.0.0",
"plugins": {
"flow-debugger": "dist/flow-debugger.js"
}
},
"devDependencies": {
"@types/node": "^15.0.1",
"fs-extra": "^10.0.0",
"html-minifier": "^4.0.0",
"nodemon": "^2.0.7",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
}
}