-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "combi",
"version": "1.1.5",
"description": "A tiny keyboard shortcut handling library",
"source": "src/index.js",
"module": "dist/combi.es.js",
"main": "dist/combi.js",
"umd:main": "dist/combi.umd.js",
"types": "combi.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/krismuniz/combi.git"
},
"dependencies": {},
"devDependencies": {
"ava": "2.4.0",
"coveralls": "^3.0.9",
"cross-var": "^1.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"microbundle": "^0.11.0",
"nyc": "^15.0.0"
},
"scripts": {
"start": "echo 'https://github.com/krismuniz/combi'",
"build": "microbundle",
"lint": "eslint src test",
"test": "npm run lint && nyc --reporter=lcov --reporter=text ava ./test/*.js",
"prepare": "npm run -s build",
"release": "cross-var npm run test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"files": [
"*.d.ts",
"src",
"dist"
],
"keywords": [
"key",
"keys",
"keyboard",
"shortcuts",
"handler",
"modifier",
"combination",
"code"
],
"author": "Kristian Muñiz <[email protected]> (http://www.krismuniz.com)",
"license": "MIT"
}