-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.17 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
38
39
40
41
42
43
{
"name": "node-red-contrib-mhub",
"version": "1.4.0",
"description": "MHub publish/subscribe nodes for Node-RED",
"author": "Martin Poelstra <martin@beryllium.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/poelstra/node-red-contrib-mhub.git"
},
"keywords": [
"node-red",
"mhub"
],
"node-red": {
"nodes": {
"mhub": "dist/nodes/mhub.js"
}
},
"bugs": {
"url": "https://github.com/poelstra/node-red-contrib-mhub/issues"
},
"homepage": "https://github.com/poelstra/node-red-contrib-mhub#readme",
"dependencies": {
"mhub": "^2.1.0"
},
"devDependencies": {
"@types/node": "^13.13.1",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"scripts": {
"lint": "tslint -t verbose src/**/*.ts",
"build": "mkdir -p dist/nodes/ && cp -a src/nodes/*.html src/nodes/locales/ dist/nodes/ && tsc -p src/ && npm run -s lint",
"clean": "rimraf -rf dist",
"prepare": "npm run -s clean && npm run -s build",
"prepublishOnly": "npm run -s prepare",
"preversion": "npm install",
"version": "git add package-lock.json"
}
}