-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
86 lines (86 loc) · 2.23 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
{
"name": "react-shortcuts",
"description": "React shortcuts",
"version": "2.1.0",
"license": "MIT",
"main": "./lib/",
"maintainers": [
{
"name": "Petr Brzek",
"email": "[email protected]"
}
],
"keywords": [
"react",
"react-component",
"keyboard",
"shortcuts",
"mousetrap"
],
"scripts": {
"prepublish": "babel src/ -d lib/",
"start": "webpack-dev-server --hot --progress --colors",
"test": "mocha"
},
"dependencies": {
"combokeys": "^3.0.1",
"events": "^1.0.2",
"invariant": "^2.1.0",
"just-reduce-object": "^1.0.3",
"platform": "^1.3.0",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^0.14.8 || ^15 || ^16",
"react-dom": "^0.14.8 || ^15 || ^16"
},
"repository": {
"type": "git",
"url": "git://github.com/avocode/react-shortcuts.git",
"web": "http://github.com/avocode/react-shortcuts"
},
"bugs": {
"url": "http://github.com/avocode/react-shortcuts/issues"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-enzyme": "^1.0.0-beta.1",
"cheerio": "^0.20.0",
"create-react-class": "^15.6.3",
"css-loader": "^0.15.6",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-import-resolver-webpack": "^0.7.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"eslint-plugin-standard": "^2.0.1",
"istanbul": "^0.3.18",
"jsdom": "^8.0.4",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"lodash": "^4.15.0",
"mocha": "^2.2.5",
"react": "^16",
"react-dom": "^16",
"react-dom-factories": "^1.0.2",
"simulant": "^0.2.2",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"style-loader": "^0.12.3",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.10.1"
}
}