-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
64 lines (64 loc) · 1.44 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
{
"name": "ink-progress-bar",
"version": "3.0.0",
"description": "a customizable progress bar for ink",
"main": "lib/index.js",
"author": "Frankie Bagnardi <[email protected]>",
"license": "MIT",
"scripts": {
"test": "xo --fix && jest --coverage",
"build": "babel src --out-dir lib --ignore src/__tests__",
"prepublish": "npm run test && npm run build",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
},
"files": [
"lib"
],
"dependencies": {
"blacklist": "^1.1.4",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"ava": "^1.3.1",
"babel-eslint": "^10.0.1",
"coveralls": "^3.0.3",
"eslint-config-xo-react": "^0.19.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"ink": "^2.1.1",
"jest": "^24.7.1",
"react": "^16.8.6",
"xo": "^0.24.0"
},
"peerDependencies": {
"ink": ">=2.0.0",
"react": ">=16.8.0"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"presets": [
"@ava/stage-4",
"@babel/preset-react"
]
},
"ava": {
"color": true
},
"xo": {
"space": true,
"env": "jest",
"extends": [
"xo-react"
],
"plugins": [
"react"
]
}
}