-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.32 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
69
70
71
72
73
74
75
76
77
{
"name": "terminal-cooker",
"version": "1.0.1",
"description": "Cook inside your terminal",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/reactor-studio/terminal-cooker.git"
},
"author": {
"name": "Dino Trojak",
"email": "[email protected]",
"url": "dinodsaur.us"
},
"bin": {
"cook": "cli.js"
},
"engines": {
"node": ">=6"
},
"keywords": [
"terminal",
"cooking"
],
"dependencies": {
"home-dir": "^1.0.0",
"import-jsx": "^1.3.0",
"ink": "^0.5.0",
"ink-big-text": "^0.3.0",
"ink-checkbox-list": "^1.3.1",
"ink-divider": "^1.1.1",
"ink-link": "^0.2.0",
"ink-router": "^0.6.0",
"ink-select-input": "^2.0.0",
"ink-spinner": "^2.0.0",
"meow": "^5.0.0",
"node-fetch": "^2.3.0",
"npmlog": "^4.1.2",
"prop-types": "^15.6.1"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"eslint-config-xo-react": "^0.16.0",
"eslint-plugin-react": "^7.7.0",
"xo": "0.20.3"
},
"ava": {
"babel": {
"presets": [
"@ava/stage-4"
],
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h",
"useBuiltIns": true
}
]
]
}
},
"xo": {
"extends": [
"xo-react"
],
"rules": {
"react/no-unused-prop-types": 1
},
"settings": {
"react": {
"pragma": "h"
}
}
}
}