-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "node-red-debugger",
"version": "1.1.1",
"description": "A flow debugger for Node-RED 2.x",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-debugger.git"
},
"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 -i resources -e 'ts html css'",
"test": "npm run build"
},
"keywords": ["node-red","debugger"],
"author": "Nick O'Leary <[email protected]>",
"files": [
"dist",
"resources"
],
"license": "Apache-2",
"node-red": {
"version": ">=2.0.0",
"plugins": {
"flow-debugger": "dist/flow-debugger.js"
}
},
"devDependencies": {
"@types/node": "^15.12.2",
"fs-extra": "^10.0.0",
"html-minifier": "^4.0.0",
"nodemon": "^2.0.7",
"tslint": "^6.1.3",
"typescript": "^4.3.2"
}
}