-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.07 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
{
"name": "@runkod/runkod-cli",
"version": "0.1.1",
"description": "Runkod CLI client",
"author": "Runkod <[email protected]>",
"bin": {
"runkod": "./cli.js"
},
"engines": {
"node": ">=8.3.0"
},
"files": [
"cli.js",
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/runkod/runkod-cli"
},
"dependencies": {
"chalk": "^3.0.0",
"filesize": "^6.1.0",
"glob": "^7.1.6",
"i18next": "^19.4.3",
"inquirer": "^7.0.4",
"jszip": "^3.2.2",
"minimatch": "^3.0.4",
"minimist": "^1.2.5",
"moment": "^2.24.0",
"netrc": "^0.1.4",
"ora": "^4.0.3",
"prompts": "^2.3.2",
"read": "^1.0.7",
"request": "^2.88.2",
"terminal-link": "^2.1.1",
"tmp": "^0.1.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5"
},
"resolutions": {
"lodash": ">=4.17.19"
},
"license": "ISC",
"ignore": [
"test"
],
"scripts": {
"build": "babel src --out-dir dist",
"prepublish": "npm run build"
}
}