-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "hotkeysengine",
"version": "1.0.2",
"description": "Plugin for hot keys configuration on a web app",
"main": "hot-keys-engine.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "nyc mocha src/__tests__",
"build-debug": "browserify src/hot-keys-engine.js -d --s HotKeys > dist/hot-keys-engine.js",
"build": "npm run build-debug",
"deploy": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbheber/HotKeysEngine.git"
},
"keywords": [
"Hot-keys",
"keyboard"
],
"author": "Juan Bautista Heber",
"license": "MIT",
"bugs": {
"url": "https://github.com/jbheber/HotKeysEngine/issues"
},
"homepage": "https://github.com/jbheber/HotKeysEngine#readme",
"dependencies": {
"requirejs": "^2.3.5"
},
"devDependencies": {
"browserify": "^16.1.1",
"mocha": "^5.0.4",
"mock-browser": "^0.92.14",
"mock-local-storage": "^1.0.5",
"mock-xmlhttprequest": "^1.2.0",
"nyc": "^11.6.0",
"uglify-js": "^3.3.16",
"watchify": "^3.11.0"
}
}