-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
49
{
"name": "nuco-cli",
"version": "1.0.0",
"main": "dist/index.js",
"bin": {
"nuco": "dist/index.js"
},
"scripts": {
"start": "rollup -c -w",
"build": "yarn build:prod && yarn build:types",
"build:prod": "rollup -c",
"build:types": "tsc --emitDeclarationOnly"
},
"repository": "https://github.com/NucoTech/nuco-cli.git",
"author": "HerbertHe <Herbert.He0229@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NucoTech/nuco-cli/issues"
},
"keywords": [
"nuco",
"frontend"
],
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.16",
"@babel/preset-typescript": "^7.12.16",
"@babel/runtime": "^7.12.13",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/pluginutils": "^4.1.0",
"@types/node-fetch": "^2.5.8",
"cross-env": "^7.0.3",
"rollup": "^2.39.0",
"typescript": "^4.1.5"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^7.0.0",
"inquirer": "^7.3.3",
"node-fetch": "^2.6.1",
"ora": "^5.3.0"
}
}