-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.56 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.56 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
48
49
50
{
"name": "node-red-contrib-datacake",
"version": "0.1.5",
"description": "Datacake nodes for Node-RED",
"author": "Lukas Klein <lukas@datacake.co>",
"license": "MIT",
"scripts": {
"start": "npm run watch",
"build": "npm run build-ts && npm run tslint && npm run copy-static-assets",
"watch-node": "nodemon --watch dist/ --exec \"node-red\"",
"watch": "concurrently --kill-others-on-fail -p \"[{name}]\" -n \"Assets,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run copy-static-assets\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "jest --forceExit --verbose -- --watchAll",
"coverage": "jest --forceExit --coverage --verbose",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"copy-static-assets": "ts-node copyStaticAssets.ts"
},
"keywords": [
"node-red",
"datacake"
],
"node-red": {
"nodes": {
"datacake-mqtt": "dist/datacake-mqtt.js",
"datacake-configuration": "dist/datacake-configuration.js"
}
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.4",
"@types/node-red": "^0.17.3",
"@types/shelljs": "^0.8.4",
"concurrently": "^4.1.0",
"jest": "^24.7.1",
"nodemon": "^1.18.0",
"prettier": "^1.17.0",
"shelljs": "^0.8.3",
"ts-jest": "^24.0.2",
"ts-node": "^8.0.0",
"tslint": "^5.15.0",
"typescript": "^3.4"
},
"dependencies": {
"node-red": "^0.20.5",
"node-red-contrib-typescript-node": "^0.1.0",
"is-utf8": "^0.2.1",
"mqtt": "^3.0.0"
}
}