-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 KB
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
{
"name": "react-mousetrap",
"version": "0.2.0",
"description": "HOC builder for Mousetrap",
"main": "lib/index.js",
"readmeFilename": "README.md",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"test": "./node_modules/.bin/jest",
"compile": "babel -d lib/ src/",
"prepublish": "yarn compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blacktangent/react-mousetrap.git"
},
"keywords": ["react", "mousetrap", "keyboard", "shortcuts", "events"],
"author": {
"name": "Alvin Ng",
"email": "text@alvinsj.net",
"url": "https://github.com/alvinsj"
},
"bugs": {
"url": "https://github.com/blacktangent/react-mousetrap/issues"
},
"homepage": "https://github.com/blacktangent/react-mousetrap#readme",
"dependencies": {
"mousetrap": "^1.6.1"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0",
"react-polyfills": "^0.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "^4.7.2",
"eslint-config-prettier": "^2.5.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^21.2.1",
"react-test-renderer": "^16.0.0"
}
}