-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·32 lines (32 loc) · 942 Bytes
/
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
{
"name": "@hidetak/create-node-red-node",
"version": "0.1.0-beta.2",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/hidetak/create-node-red-node"
},
"main": "dist/index.js",
"bin": {
"create-node-red-node": "bin/index.js"
},
"scripts": {
"build": "tsc && npm run copy:dist2bin",
"copy:dist2bin": "node -e \"require('fs-extra').copySync('./dist', './bin')\"",
"build:node": "tsc && node dist/index out-node/ node-gen-config.json template/",
"publish:beta": "npm publish --tag beta --tag latest",
"deprecated_build:node": "ejs-cli --base-dir template/ '**/*.*' --out out-node/ -O node-gen-config.json"
},
"author": "hidetak",
"license": "MIT",
"devDependencies": {
"@types/ejs": "^3.1.1",
"@types/node": "^18.11.18",
"ejs-cli": "^2.2.3",
"typescript": "^4.9.4",
"fs-extra": "^10.1.0"
},
"dependencies": {
"ejs": "^3.1.8"
}
}