forked from gugutz/shortway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.79 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
{
"name": "shortway",
"version": "0.4.0",
"description": "A shortway to handle keyboard shortcuts.",
"main": "lib/shortway.cjs.js",
"module": "lib/shortway.js",
"scripts": {
"precommit": "npm test && npm run lint && npm run build",
"prepush": "npm run precommit",
"build": "rollup -c --environment build:cjs && rollup -c --environment build:umd",
"test": "tape -r babel-register \"test/**/*.js\"",
"lint": "xo test/**/*.js lib/**/*.js --fix",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"test:watch": "tape-watch -r babel-register \"test/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiamsantos/shortway.git"
},
"keywords": [
"browser",
"events",
"key",
"keys",
"key",
"combos",
"binding",
"keyboard",
"keybind",
"KeyboardEvent",
"events",
"hotkeys",
"sequence",
"shortcut",
"shortcuts",
"shortway",
"keyboard"
],
"babel": {
"presets": [
"es2015"
],
"sourceMaps": "inline"
},
"bugs": {
"url": "https://github.com/thiamsantos/shortway/issues"
},
"xo": {
"esnext": true,
"envs": [
"browser",
"node"
],
"ignores": [
"lib/shortway.cjs.js",
"lib/shortway.umd.js"
],
"space": true,
"semicolon": false
},
"homepage": "https://github.com/thiamsantos/shortway#readme",
"author": "Thiago Santos",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"husky": "^0.13.1",
"nyc": "^10.1.2",
"rollup": "^0.41.4",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-uglify": "^1.0.1",
"tape": "^4.6.3",
"tape-watch": "^2.2.4",
"xo": "^0.17.1"
}
}