-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@mindconnect/node-red-contrib-mindconnect",
"version": "3.12.1",
"description": "node red mindconnect node using mindconnect-nodejs library.",
"main": "index.js",
"scripts": {
"prepare": "tsc",
"start": "node node_modules/node-red/red.js --userDir ../devnodes",
"start-dev": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 concurrently --raw \"npm run node:watch\" \"npm run ts:watch \" ",
"test-dev": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 concurrently --raw \"npm run ts:watch \" \"npm run test:watch\" ",
"ts:build": "tsc",
"ts:watch": "tsc -w",
"ts:lint": "tslint",
"node:watch": "nodemon -e js,html --watch src node_modules/node-red/red.js --userDir ../devnodes ",
"test:watch": "mocha --watch test/ --growl --reporter=spec --inspect --timeout=0",
"doc": "compodoc -p tsconfig.json --output docs --name \"@mindconnect/node-red-contrib-mindconnect\" --theme material && cp -r images/ docs/ ",
"test": "npm run ts:build && nyc mocha --colors --reporter spec --timeout=5000 --exit",
"test-jenkins": "npm run ts:build && cross-env JUNIT_REPORT_PATH=./report.xml mocha --colors --grep @ci --reporter mocha-jenkins-reporter --timeout=15000 --exit ",
"license": "license-checker --csv --onlyAllow \"Apache-2.0; Apache*; BSD; BSD-2-Clause; BSD-3-Clause; ISC; MIT; Unlicense; WTFPL; CC-BY-3.0; CC0-1.0\" --production",
"license:summary": "license-checker --summary --onlyAllow \"Apache-2.0; Apache*; BSD; BSD-2-Clause; BSD-3-Clause; ISC; MIT; Unlicense; WTFPL; CC-BY-3.0; CC0-1.0\" --production"
},
"repository": {
"type": "git",
"url": "https://github.com/mindsphere/node-red-contrib-mindconnect.git"
},
"keywords": [
"MindSphere",
"MindConnect",
"node-red"
],
"author": "@sn0wcat",
"license": "MIT",
"devDependencies": {
"@compodoc/compodoc": "^1.1.19",
"@types/ajv": "^1.0.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.31",
"@types/node-fetch": "^2.5.10",
"chai": "^4.3.6",
"concurrently": "^7.1.0",
"cross-env": "^7.0.3",
"license-checker": "^25.0.1",
"mocha": "^8.4.0",
"mocha-jenkins-reporter": "^0.4.7",
"node-red": "^2.2.2",
"node-red-node-test-helper": "^0.2.7",
"nodemon": "^2.0.16",
"nyc": "^15.1.0",
"tslint": "^6.1.3",
"typescript": "^4.6.4",
"typescript-tslint-plugin": "^1.0.1"
},
"node-red": {
"nodes": {
"mindconnect": "src/mindconnect.js"
}
},
"dependencies": {
"@mindconnect/mindconnect-nodejs": "^3.19.0",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"debug": "^4.3.4",
"node-fetch": "^2.6.1"
}
}