-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 982 Bytes
/
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
{
"name": "gitlog",
"version": "0.0.0",
"license": "MIT",
"bin": "cli.js",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js",
"ui.js"
],
"dependencies": {
"import-jsx": "^4.0.0",
"ink": "^3.0.3",
"ink-spinner": "^4.0.0",
"luxon": "^1.24.1",
"meow": "^7.0.1",
"react": "^16.13.1",
"simple-git": "^2.17.0"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.5",
"ava": "^3.11.1",
"chalk": "^4.1.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"ink-testing-library": "^2.0.1",
"xo": "^0.32.1"
},
"ava": {
"babel": true,
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"xo": {
"extends": "xo-react",
"rules": {
"react/prop-types": "off"
}
}
}