forked from vadimdemedes/pastel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.26 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
{
"name": "pastel",
"version": "1.1.1",
"description": "Framework for effortlessly building Ink apps",
"license": "MIT",
"repository": "vadimdemedes/pastel",
"author": {
"name": "Vadim Demedes",
"email": "[email protected]",
"url": "vadimdemedes.com"
},
"bin": "cli.js",
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"cli.js",
"boot.js",
"entry.js",
"commands",
"lib"
],
"keywords": [
"ink",
"cli",
"cli-app",
"cli-framework"
],
"dependencies": {
"@babel/parser": "^7.3.4",
"@babel/traverse": "^7.3.4",
"@babel/types": "^7.3.4",
"camelcase-keys": "^5.2.0",
"cardinal": "^2.1.1",
"chalk": "^2.4.2",
"decamelize": "^3.2.0",
"del": "^4.1.1",
"execa": "^1.0.0",
"figures": "^3.0.0",
"has-yarn": "^2.1.0",
"import-from": "^2.1.0",
"make-dir": "^3.0.0",
"ora": "^3.4.0",
"parcel-bundler": "^1.12.3",
"pkg-up": "^3.1.0",
"read-pkg-up": "^5.0.0",
"strip-indent": "^3.0.0",
"watch": "^1.0.2",
"wrap-ansi": "^5.1.0",
"yargs": "^13.2.2"
},
"devDependencies": {
"ava": "^0.25.0",
"ink": "^2.1.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"xo": "^0.21.0"
},
"peerDependencies": {
"ink": "^2.1.1",
"prop-types": "^15.7.2",
"react": "^16.8.6"
}
}