-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
{
"name": "node-red-flow-reporter",
"version": "1.0.9",
"description": "Node-RED Flow File Reporter - better version control experience and documentation with Node-RED Flows",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Scaletronic/node-red-flow-reporter.git"
},
"homepage": "https://github.com/Scaletronic/node-red-flow-reporter?tab=readme-ov-file#node-red---flow-report",
"bin": {
"node-red-flow-reporter": "./dist/index.js"
},
"scripts": {
"test": "ts-mocha src/**/*.spec.ts",
"ts-cli": "ts-node src",
"build": "tsc",
"prepub": "npm run build",
"pub": "npm publish --access public"
},
"author": "Andreas Markussen <[email protected]>",
"license": "ISC",
"dependencies": {
"@node-red/flow-parser": "^1.0.2",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.25",
"commander": "^12.0.0",
"mocha": "^9.2.2"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/node-red": "^1.2.1",
"chai": "^4.3.7",
"ts-mocha": "^10.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=14.0.0"
},
"mocha": {
"_SEE_DOCUMENTATION_": "https://github.com/mochajs/mocha/blob/master/example/config/.mocharc.js",
"ignore": [
"node_modules/**",
"projects/**/node_modules/**"
],
"watch-files": [
"**/*.js",
"**/*.ts",
"**/*.json"
],
"exit": true
}
}