-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.61 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": "keybound-component",
"version": "0.1.0",
"description": "A React higher-order component for simple, declarative keybindings",
"author": "Adam Markon <[email protected]>",
"main": "./dist/index.js",
"scripts": {
"codecov": "istanbul cover ./node_modules/.bin/_mocha -- --recursive --compilers js:babel-register test && codecov",
"test": "mocha --compilers js:babel-register test",
"lint": "eslint --ext '.js' ./src"
},
"keywords": [
"react",
"hoc",
"keybinding",
"keybindings"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://www.github.com/aem/keybound-component"
},
"bugs": {
"url": "https://www.github.com/aem/keybound-component/issues"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.7.7",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"codecov": "^1.0.1",
"eslint": "^3.1.1",
"eslint-config-airbnb-base": "^5.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-react": "^5.2.2",
"expect": "^1.20.1",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^1.5.4",
"gulp-util": "^3.0.7",
"istanbul": "1.0.0-alpha.2",
"jquery": "^2.2.4",
"jsdom": "^9.2.1",
"mocha": "^2.4.5",
"mocha-jsdom": "^1.1.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"react": "^15.1.0",
"react-dom": "^15.1.0"
}
}