This repository has been archived by the owner on Jun 10, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 1.4 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
78
{
"name": "ink-box",
"version": "1.0.0",
"description": "Styled box component for Ink",
"license": "MIT",
"repository": "sindresorhus/ink-box",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "sindresorhus.com"
},
"main": "dist.js",
"engines": {
"node": ">=8"
},
"scripts": {
"build": "babel index.js --out-file=dist.js",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "xo && ava"
},
"files": [
"dist.js"
],
"keywords": [
"ink-component",
"ink",
"component",
"box",
"boxen",
"boxes",
"border",
"react",
"jsx",
"terminal",
"term",
"console",
"command-line"
],
"dependencies": {
"boxen": "^3.0.0",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/preset-react": "^7.0.0",
"ava": "^1.3.1",
"clear-module": "^3.1.0",
"eslint-config-xo-react": "^0.19.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.4.0",
"ink": "^2.0.0",
"ink-testing-library": "^1.0.0",
"react": "^16.8.2",
"strip-ansi": "^5.0.0",
"xo": "^0.24.0"
},
"peerDependencies": {
"ink": ">=2.0.0",
"react": ">=16.8.0"
},
"babel": {
"presets": [
"@ava/stage-4",
"@babel/preset-react"
]
},
"xo": {
"extends": [
"xo-react"
],
"rules": {
"react/require-default-props": "off",
"react/no-unused-prop-types": "off"
}
}
}