-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
73 lines (73 loc) · 1.3 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
{
"name": "ink-confirm-input",
"version": "2.0.0",
"description": "Confirmation input component for Ink",
"license": "MIT",
"repository": "kevva/ink-confirm-input",
"author": {
"name": "Kevin Mårtensson",
"email": "[email protected]",
"url": "github.com/kevva"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "babel index.js --out-file=dist.js",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "xo && ava"
},
"main": "dist.js",
"files": [
"dist.js"
],
"keywords": [
"boolean",
"checked",
"component",
"confirm",
"input",
"ink",
"no",
"yes"
],
"dependencies": {
"ink-text-input": "^3.2.1",
"prop-types": "^15.5.10",
"yn": "^3.1.1"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"ava": "^2.3.0",
"chalk": "^2.4.2",
"eslint-config-xo-react": "^0.20.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-react-hooks": "^2.0.1",
"ink": "^2.3.0",
"ink-testing-library": "^1.0.2",
"react": "^16.9.0",
"sinon": "^7.4.2",
"xo": "^0.24.0"
},
"peerDependencies": {
"ink": ">=2",
"react": ">=16"
},
"ava": {
"color": true
},
"babel": {
"presets": [
"@ava/stage-4",
"@babel/preset-react"
]
},
"xo": {
"extends": [
"xo-react"
]
}
}