-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
83 lines (83 loc) · 2.41 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "node-red-contrib-controltimer",
"version": "0.4.1",
"description": "A controllable Node-RED timer node. Start, Stop, Reset, Pause and Continue the timer. Use the timer as a loop or a delay.",
"scripts": {
"build": "scripty",
"build:copy-icons": "scripty",
"build:render-html": "scripty",
"clean:all": "scripty",
"clean:artifacts": "scripty",
"dev": "scripty",
"node-red:reinstall-package": "scripty",
"node-red:start-docker": "scripty",
"node-red:stop-docker": "scripty",
"npm:publish": "scripty",
"npm:update": "scripty",
"tidy:format": "scripty",
"tidy:lint": "scripty",
"tidy:lint-fix": "scripty"
},
"devDependencies": {
"@types/ejs": "^3.1.1",
"@types/node": "^18.11.9",
"@types/node-red": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"concurrently": "^7.5.0",
"ejs": "^3.1.8",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"npm-check-updates": "^16.4.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"scripty": "^2.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"homepage": "https://github.com/Writech/node-red-contrib-controltimer#readme",
"bugs": {
"url": "https://github.com/Writech/node-red-contrib-controltimer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Writech/node-red-contrib-controltimer.git"
},
"author": "Robert Vane <[email protected]>",
"license": "MIT",
"keywords": [
"node-red",
"timer",
"delay",
"loop",
"timeout",
"interval"
],
"node-red": {
"version": ">=3.0.0",
"nodes": {
"controltimer": "dist/controltimer.js"
}
},
"engines": {
"node": ">=14.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown"
],
"*.{js,ts,cjs,mts}": [
"eslint --fix"
]
}
}