This repository has been archived by the owner on Jun 24, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 1.42 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "ink-password-input",
"version": "2.0.0",
"description": "Password input component for Ink",
"license": "MIT",
"repository": "vadimdemedes/ink-password-input",
"author": {
"name": "Vadim Demedes",
"email": "vdemedes@gmail.com",
"url": "github.com/vadimdemedes"
},
"main": "dist/index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"pretest": "npm run build",
"test": "xo && ava",
"build": "babel src --out-dir=dist",
"prepublish": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"ink",
"text",
"input",
"component",
"jsx",
"react",
"stdin",
"keypress",
"search",
"query"
],
"dependencies": {
"has-ansi": "^3.0.0",
"prop-types": "^15.5.10"
},
"devDependencies": {
"ava": "^0.20.0",
"babel-cli": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"eslint-config-xo-react": "^0.13.0",
"eslint-plugin-react": "^7.1.0",
"ink": "^0.5.0",
"sinon": "^2.3.6",
"xo": "^0.18.2"
},
"babel": {
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h",
"useBuiltIns": true
}
]
]
},
"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"
}
}
}
}