forked from greena13/react-hotkeys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.73 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "react-hotkeys",
"version": "1.1.3",
"description": "A declarative library for handling hotkeys and focus within a React application",
"main": "index",
"module": "index.es",
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"devDependencies": {
"autoprefixer-loader": "^1.2.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.2.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-remove-comments": "^2.0.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.11.0",
"babel-register": "^6.24.1",
"chai": "^4.1.2",
"chai-enzyme": "^1.0.0-beta.0",
"cheerio": "^1.0.0-0",
"css-loader": "^0.9.1",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "^4.1.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"estraverse": "^4.2.0",
"jsdom": "^11.3.0",
"jsdom-global": "^3.0.2",
"lodash.random": "^3.2.0",
"mocha": "^2.4.5",
"nodemon": "^1.17.2",
"prompt": "^0.2.14",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-license": "^0.6.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"simulant": "^0.2.2",
"sinon": "^4.0.0",
"sinon-chai": "^2.14.0",
"style-loader": "^0.9.0",
"webpack": "^1.7.3"
},
"dependencies": {
"lodash.isboolean": "^3.0.3",
"lodash.isequal": "^4.5.0",
"lodash.isobject": "^3.0.2",
"mousetrap": "^1.5.2",
"prop-types": "^15.6.0"
},
"files": [
"cjs",
"umd",
"es",
"package.json",
"README.md",
"LICENSE",
"index.js",
"index.es.js",
"index.d.ts"
],
"peerDependencies": {
"react": ">= 0.14.0",
"react-dom": ">= 0.14.0"
},
"scripts": {
"lint": "eslint .",
"test": "mocha",
"watch-tests": "nodemon --exec 'npm run test || true'",
"prepublish": "npm run build-cjs && npm run build-es && npm run build-umd",
"build-cjs": "rm -rf cjs && npm run build-development && npm run build-production",
"build-es": "rm -rf es && npm run build-es-development && npm run build-es-production",
"build-umd": "rm -rf umd && npm run build-umd-development && npm run build-umd-production",
"build-development": "BABEL_ENV=development NODE_ENV=development babel lib -d cjs",
"build-es-development": "BABEL_ENV=es-development NODE_ENV=development babel lib -d es",
"build-umd-development": "BABEL_ENV=umd-development NODE_ENV=development rollup --format umd --name ReactHotkeys -c --file umd/react-hotkeys.js",
"build-production": "BABEL_ENV=production NODE_ENV=production rollup --format cjs -c --file cjs/react-hotkeys.production.min.js",
"build-es-production": "BABEL_ENV=production NODE_ENV=production rollup --format es -c --file es/react-hotkeys.production.min.js",
"build-umd-production": "BABEL_ENV=production NODE_ENV=production rollup --format umd --name ReactHotkeys -c --file umd/react-hotkeys.min.js"
},
"author": "Aleck Greenham",
"contributors": [
"Chris Pearce <[email protected]> (chrispearce.co)"
],
"license": "MIT",
"keywords": [
"react-component",
"hotkeys",
"focus",
"react"
],
"repository": {
"type": "git",
"url": "git+https://github.com/greena13/react-hotkeys.git"
},
"homepage": "https://github.com/greena13/react-hotkeys",
"bugs": {
"url": "https://github.com/greena13/react-hotkeys/issues"
},
"globalExport": "ReactHotkeys",
"typings": "./index.d.ts"
}