-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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": "@fujix/cli",
"version": "0.1.54",
"bin": {
"fujix": "./lib/index.js"
},
"types": "./lib/index.d.ts",
"private": false,
"author": "Alexey Maligon (fujix.io)",
"license": "MIT",
"engines": {
"node": ">=8"
},
"files": [
"/lib",
"yarn.lock",
"README.md"
],
"scripts": {
"alpha": "yarn run build && npm version prerelease --preid=\"alpha\" && npm publish --tag alpha",
"beta": "yarn run build && npm version prerelease --preid=\"beta\" && npm publish --tag beta",
"patch": "yarn run build && npm version patch && npm publish",
"minor": "yarn run build && npm version minor && npm publish",
"major": "yarn run build && npm version major && npm publish",
"build": "rm -rf lib && tsc --declaration",
"test": "yarn build && fujix"
},
"devDependencies": {
"@types/ink-spinner": "^2.0.3",
"@types/ink-text-input": "^2.0.1",
"@types/node": "^13.5.3",
"@types/react": "^16.9.17",
"@types/request-promise": "^4.1.45",
"@types/rimraf": "^2.0.3",
"tslint": "^6.1.1",
"tslint-config-airbnb": "5.11.1",
"tslint-config-prettier": "1.18.0"
},
"dependencies": {
"@fujix/client": "^1.0.15",
"arg": "^4.1.2",
"chalk": "^3.0.0",
"ink": "^2.6.0",
"ink-divider": "^2.0.1",
"ink-spinner": "^3.0.1",
"ink-text-input": "^3.2.2",
"react": "^16.12.0",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"rimraf": "^3.0.0",
"utility-types": "^3.10.0"
},
"main": "./lib/index.js",
"repository": "[email protected]:fujix-io/fujix-cli.git"
}