-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.15 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
{
"name": "react-input-shortcut",
"version": "0.0.1",
"description": "Make typing shortcut keys easily.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "babel src --out-dir lib --watch --source-maps inline",
"lint": "eslint src/*.js",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/s4kr4/react-input-shortcut.git"
},
"author": "s4kr4",
"license": "MIT",
"bugs": {
"url": "https://github.com/s4kr4/react-input-shortcut/issues"
},
"homepage": "https://github.com/s4kr4/react-input-shortcut#readme",
"dependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.0.1",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-react": "^7.0.1",
"flow-bin": "^0.47.0",
"mocha": "^3.4.2"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"files": [
"index.js",
"lib"
]
}