-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "@tmus/node-red-contrib-differences",
"version": "1.1.1",
"description": "Given two array inputs, when this node is executed it will output the differences between the two arrays",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"prepack": "tsc && copyfiles ./src/**/*.html dist/ --up=1",
"build": "npm run prepack",
"build:ci": "npm pack --unsafe-perm",
"test": "mocha -r ts-node/register \"**/*.spec.ts\"",
"start": "npm run build && node-red"
},
"repository": {
"type": "git",
"url": "https://github.com/tmobile/node-red-contrib-differences"
},
"keywords": [
"node-red",
"Array Differences",
"IoT",
"Internet of Things"
],
"author": "T-Mobile",
"license": "Apache-2.0",
"node-red": {
"nodes": {
"array-diff": "dist/differences-node.js"
}
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.0",
"@types/node-red": "^0.20.1",
"chai": "^4.2.0",
"copyfiles": "^2.2.0",
"mocha": "^7.1.1",
"node-red": "^1.0.5",
"node-red-node-test-helper": "^0.2.3",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"bugs": {
"url": "https://github.com/tmobile/node-red-contrib-differences/issues"
},
"homepage": "https://github.com/tmobile/node-red-contrib-differences"
}