-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.09 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
{
"name": "react-onenterkeydown",
"version": "2.2.0",
"description": "React higher order component for adding onEnterKeyDown to input components",
"main": "dist/react-onenterkeydown.cjs.js",
"module": "dist/react-onenterkeydown.esm.js",
"scripts": {
"lint": "eslint 'src/*.js?(x)' 'test/*.js?(x)'",
"pretest": "npm run lint",
"test": "mocha test/index.jsx",
"cover": "nyc npm test",
"coveralls": "npm run cover && nyc report --reporter=text-lcov | coveralls",
"build": "rollup -c",
"prepare": "npm run build && npm run test"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/perrin4869/react-onenterkeydown.git"
},
"keywords": [
"react-component",
"hoc",
"higher order component"
],
"author": "Julian Grinblat <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/perrin4869/react-onenterkeydown/issues"
},
"homepage": "https://github.com/perrin4869/react-onenterkeydown#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-istanbul": "^5.1.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"env-test": "^1.0.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jsdom": "^12.2.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"raf": "^3.4.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-terser": "^3.0.0",
"sinon": "^7.0.0"
},
"peerDependencies": {
"react": ">=16.3.0"
},
"dependencies": {
"hoist-non-react-statics": "^3.0.1",
"prop-types": "^15.6.0",
"react-display-name": "^0.2.3"
}
}