-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 1.39 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
{
"name": "ink-quicksearch",
"version": "0.3.2",
"description": "Quicksearch Input Component for Ink",
"main": "dist/index.js",
"author": {
"name": "Andrei Cioara",
"email": "github@andreicioara.com",
"url": "http://andrei.cioara.me"
},
"license": "MIT",
"scripts": {
"build": "babel src/QuickSearch.jsx --out-file=dist/index.js",
"eslint": "eslint src/**/*.jsx examples/**/*.jsx",
"eslint-fix": "eslint --fix src/**/*.jsx examples/**/*.jsx",
"start": "node examples/example1.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aicioara/ink-quicksearch.git"
},
"keywords": [
"ink",
"ink-component"
],
"bugs": {
"url": "https://github.com/aicioara/ink-quicksearch/issues"
},
"homepage": "https://github.com/aicioara/ink-quicksearch#readme",
"dependencies": {
"has-ansi": "3.0.0",
"lodash.isequal": "4.5.0"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-plugin-transform-react-jsx": "6.24.1",
"eslint": "4.19.1",
"eslint-plugin-react": "7.8.2",
"import-jsx": "1.3.0",
"ink": "0.5.0",
"term-size": "1.2.0"
},
"peerDependencies": {
"ink": "0.5.x"
},
"babel": {
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h",
"useBuiltIns": true
}
]
]
}
}