forked from alibaba/lowcode-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.17 KB
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
{
"name": "@alilc/create-element",
"version": "1.1.1",
"description": "",
"main": "lib/index.js",
"bin": {
"create-element": "lib/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc -w",
"build": "rm -rf lib && tsc",
"prepublishOnly": "npm run build",
"pub": "npm publish --tag latest",
"beta": "npm publish --tag beta"
},
"repository": {
"type": "git",
"url": "git@gitlab.alibaba-inc.com:guanghong.wsj/lowcode-tools.git",
"directory": "packages/create-ali-lowcode"
},
"author": "eternalsky",
"license": "MIT",
"dependencies": {
"case": "^1.6.3",
"chalk": "^4.1.2",
"cross-spawn": "^7.0.3",
"dayjs": "^1.10.7",
"ejs": "^3.1.6",
"fie-api": "^3.1.9",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"inquirer": "^8.1.2",
"shelljs": "^0.8.4",
"yargs": "^17.2.0"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.1.4",
"@types/node": "^16.7.8",
"@types/yargs": "^17.0.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}