This repository was archived by the owner on Jan 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.49 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.49 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@sezong/cli",
"version": "0.1.0",
"description": "Command line interface of Sezong",
"bin": {
"sezong": "./bin/run"
},
"repository": "https://github.com/langsezong/cli",
"author": "RanolP <public.ranolp@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node bin/run"
},
"dependencies": {
"@oclif/command": "^1.5.8",
"@oclif/config": "^1.12.4",
"@oclif/plugin-help": "^2.1.6",
"@oclif/plugin-not-found": "^1.2.2",
"globby": "^9.0.0",
"has-ansi": "^3.0.0",
"ink": "^2.0.0-11",
"keypress": "^0.2.1",
"pacote": "^9.4.1",
"react": "^16.8.0-alpha.1",
"sezong": "^0.4.19",
"space-lift": "^0.8.7",
"terminal-link": "^1.2.0",
"validation.ts": "^0.0.25"
},
"devDependencies": {
"@commitlint/cli": "^7.4.0",
"@commitlint/config-conventional": "^7.3.1",
"@commitlint/travis-cli": "^7.4.0",
"@oclif/tslint": "^3.1.1",
"@types/jest": "^24.0.11",
"@types/node": "^11.11.0",
"@types/react": "^16.8.3",
"fast-check": "^1.10.0",
"husky": "^1.3.1",
"jest": "^24.0.0",
"prettier": "^1.16.1",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.4"
},
"files": [
"bin",
"lib"
],
"oclif": {
"bin": "sezong",
"commands": "./lib/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found"
]
},
"engines": {
"node": ">=8"
}
}