-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 783 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 783 Bytes
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
{
"name": "snake-cli",
"version": "1.0.0",
"license": "MIT",
"bin": "cli.js",
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js",
"ui.js"
],
"dependencies": {
"import-jsx": "^3.0.0",
"ink": "^2.3.0",
"meow": "^5.0.0",
"prop-types": "^15.7.2",
"react": "^16.9.0"
},
"devDependencies": {
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.6.0",
"ava": "^2.4.0",
"chalk": "^2.4.2",
"eslint-config-xo-react": "^0.20.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"ink-testing-library": "^1.0.2",
"xo": "^0.24.0"
},
"ava": {
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"xo": {
"extends": "xo-react"
}
}