-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
96 lines (96 loc) · 2.64 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@skygear/skycli",
"version": "2.3.1",
"description": "Skycli is tool for managing Skygear cluster",
"main": "dist/skycli.js",
"bin": {
"skycli": "./dist/skycli.js"
},
"scripts": {
"prepublishOnly": "rollup --config",
"skycli": "npm run prepublishOnly && ./dist/skycli.js",
"build-bin": "rollup --config --environment PKG && mkdir -p dist-bin && pkg --out-path dist-bin --targets node10-macos,node10-linux,node10-win .",
"test": "jest",
"typecheck": "tsc --noEmit",
"lint": "eslint 'src/**/*.ts'",
"prettier": "prettier --write 'src/**/*.ts'",
"prettier-check": "prettier --check 'src/**/*.ts'",
"clean": "rm -rf dist dist-bin",
"prepare-new-release": "git log --first-parent `git describe --abbrev=0`.. > new-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SkygearIO/skycli.git"
},
"keywords": [
"cli",
"skygear"
],
"author": "Oursky Limited",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SkygearIO/skycli/issues"
},
"homepage": "https://skygear.io/",
"dependencies": {
"@skygear/node-client": "2.1.0",
"@zeit/dockerignore": "0.0.5",
"chalk": "3.0.0",
"cli-table3": "0.5.1",
"command-exists": "1.2.8",
"core-js": "3.6.4",
"external-editor": "3.1.0",
"fs-extra": "8.1.0",
"gunzip-maybe": "1.4.1",
"inquirer": "7.0.3",
"js-yaml": "3.13.1",
"mime": "2.4.4",
"moment": "2.24.0",
"node-fetch": "2.6.0",
"punycode": "2.1.1",
"tar-fs": "^2.0.1",
"tmp-promise": "2.0.2",
"untildify": "4.0.0",
"yargs": "15.1.0"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-transform-typescript": "7.9.4",
"@babel/preset-env": "7.9.0",
"@oursky/eslint-config": "1.6.0",
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-json": "4.0.2",
"@rollup/plugin-node-resolve": "7.1.1",
"@rollup/plugin-replace": "2.3.1",
"@types/command-exists": "1.2.0",
"@types/fs-extra": "8.1.0",
"@types/inquirer": "6.5.0",
"@types/jest": "25.1.4",
"@types/js-yaml": "3.12.3",
"@types/mime": "2.0.1",
"@types/node": "10.17.13",
"@types/node-fetch": "2.5.5",
"@types/tmp": "0.1.0",
"@types/yargs": "15.0.4",
"builtins": "3.0.1",
"eslint": "6.8.0",
"jest": "25.2.4",
"pkg": "4.4.5",
"prettier": "2.0.2",
"rollup": "1.29.1",
"rollup-plugin-babel": "4.4.0",
"semver": "7.1.3",
"typescript": "3.8.3"
},
"jest": {
"rootDir": "src"
},
"pkg": {
"assets": [
"dist/**/*"
]
},
"skycli": {}
}