-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.45 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
44
45
46
47
48
49
50
51
52
{
"name": "red-contrib-nordic-thingy",
"version": "1.0.12",
"description": "A node red node for the Nordic Thingy",
"scripts": {
"start": "npm run serve",
"build": "npm run build-html && npm run build-ts && npm run tslint",
"watch": "concurrently -k -p \"[{name}]\" -n \"Html,TypeScript\" -c \"yellow.bold,cyan.bold\" \"npm run watch-html\" \"npm run watch-ts\"",
"test": "jest --forceExit",
"build-ts": "tsc",
"build-html": "cpx \"static/**/*\" dist/",
"watch-ts": "tsc -w",
"watch-html": "cpx \"static/**/*\" dist/ --watch",
"tslint": "tslint -c tslint.json -p tsconfig.json"
},
"node-red": {
"nodes": {
"nordic-thingy": "dist/NodeThingy.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/hadrienk/node-red-contrib-nordic-thingy.git"
},
"keywords": [
"nordic",
"thingy",
"node-red",
"ble",
"bluetooth",
"red"
],
"author": "Hadrien Kohl",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hadrienk/node-red-contrib-nordic-thingy/issues"
},
"homepage": "https://github.com/hadrienk/node-red-contrib-nordic-thingy#readme",
"dependencies": {
"color-convert": "^1.9.1",
"thingy52": "^1.0.4"
},
"devDependencies": {
"@types/color-convert": "^1.9.0",
"@types/noble": "0.0.34",
"@types/node-red": "^0.17.0",
"concurrently": "^3.5.1",
"cpx": "^1.5.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
}
}