-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.55 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
{
"name": "@naokiy/node-red-ip",
"version": "0.0.0",
"description": "Provide IP address for NodeRED",
"type": "commonjs",
"main": "none",
"author": "naokiy",
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"node-red"
],
"publishConfig": {
"access": "restricted",
"registry": "https://npm.pkg.github.com/naokiy"
},
"repository": {
"type": "git",
"url": "https://github.com/naokiy/node-red-ip.git"
},
"scripts": {
"test": "jest --passWithNoTests",
"build": "npm run clean && npm run build-ts && npm run copy-static-assets",
"clean": "rimraf dist",
"build-ts": "tsc -p tsconfig.prod.json",
"copy-static-assets": "copyfiles -f ./public/**/*.html dist",
"prepare": "husky install | chmod ug+x .husky/*"
},
"node-red": {
"nodes": {
"ip": "dist/ip.js"
}
},
"devDependencies": {
"@swc/core": "1.10.4",
"@swc/jest": "0.2.37",
"@types/ip": "1.1.3",
"@types/jest": "29.5.14",
"@types/node-red": "1.3.5",
"@types/node-red-node-test-helper": "0.3.4",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"copyfiles": "2.4.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "npm:[email protected]",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "14.0.1",
"node-red": "3.1.15",
"node-red-node-test-helper": "0.3.4",
"prettier": "3.4.2",
"rimraf": "5.0.10",
"typescript": "5.7.2"
},
"dependencies": {
"ip": "1.1.9"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "@swc/jest"
}
}
}