-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.33 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.33 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
54
55
56
57
{
"devDependencies": {
"standard": "*",
"browserify": "^9.0.3",
"proclaim": "^3.1.0",
"es5-shim": "^4.0.3",
"mocha": "^2.0.1",
"phantomjs": "^1.9.12",
"sinon": "^1.12.1",
"zuul": "^2.1.1"
},
"keywords": [
"keyboard",
"shortcuts",
"events",
"browser"
],
"name": "combokeys",
"version": "3.1.0",
"description": "Handles keyboard shortcuts in the browser",
"main": "Combokeys/index.js",
"implements": [
"CommonJS/Modules/1.0"
],
"scripts": {
"lint": "standard",
"unit": "./node_modules/zuul/bin/zuul --phantom -- test",
"build": "mkdir -p dist && browserify . -o dist/combokeys.js --standalone Combokeys",
"test": "npm run lint && npm run unit && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/PolicyStat/combokeys.git"
},
"homepage": "https://github.com/PolicyStat/combokeys",
"bugs": "https://github.com/PolicyStat/combokeys/issues",
"contributors": [
{
"name": "Shahar Or",
"email": "mightyiampresence@gmail.com",
"web": "https://github.com/mightyiam"
},
{
"name": "Craig Campbell",
"web": "http://craig.is"
}
],
"license": {
"type": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.txt"
},
"standard": {
"ignore": [
"dist/**"
]
}
}