-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.49 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
{
"name": "stack-shortcuts",
"version": "0.2.0",
"description": "Easy shortcuts api for working with modern web apps",
"main": "lib/shortcuts.cjs.js",
"module": "lib/shortcuts.esm.js",
"browser": "lib/shortcuts.umd.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha -r @babel/register test/*.spec.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "rollup -c ./rollup.config.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BusinessDuck/stack-shortcuts.git"
},
"keywords": [
"npm",
"shortcuts",
"hotkeys",
"boilerplate",
"javascript",
"keypress",
"keydown",
"keyup",
"keyboard",
"key bindings"
],
"author": "Dmitriy Yurov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BusinessDuck/stack-shortcuts/issues"
},
"homepage": "https://github.com/BusinessDuck/stack-shortcuts",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"coveralls": "^3.0.2",
"jsdom": "^13.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"mocha-coveralls-reporter": "0.0.5",
"nyc": "^13.1.0",
"rollup": "^1.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-gzip": "^2.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-uglify-es": "0.0.1"
}
}