forked from vadimdemedes/ink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "ink",
"version": "0.1.1",
"description": "React for CLI",
"license": "MIT",
"repository": "vadimdemedes/ink",
"author": {
"name": "vdemedes",
"email": "[email protected]",
"url": "github.com/vadimdemedes"
},
"engines": {
"node": ">= 4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"lib",
"index.js"
],
"keywords": [
"react",
"cli"
],
"dependencies": {
"arrify": "^1.0.1",
"chalk": "^2.0.1",
"indent-string": "^3.1.0",
"lodash.flattendeep": "^4.4.0",
"lodash.isequal": "^4.5.0",
"log-update": "^1.0.2"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-register": "^6.24.1",
"eslint-config-xo-react": "^0.12.0",
"eslint-plugin-react": "^7.1.0",
"sinon": "^2.3.4",
"xo": "^0.18.2"
},
"ava": {
"require": [
"babel-register"
],
"babel": {
"presets": [
"@ava/stage-4"
],
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h"
}
]
]
}
},
"xo": {
"extends": [
"xo-react"
],
"plugins": [
"react"
],
"rules": {
"react/prop-types": 0
},
"settings": {
"react": {
"pragma": "h"
}
}
}
}