forked from ccampbell/mousetrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "mousetrap",
"version": "1.6.5",
"description": "Simple library for handling keyboard shortcuts",
"main": "mousetrap.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha --reporter=nyan tests/test.mousetrap.js",
"build:module": "esbuild --bundle --outfile=dist/mousetrap.mjs mousetrap.mjs --format=esm",
"build:browser": "esbuild --bundle --outfile=dist/mousetrap.js mousetrap.mjs",
"build": "yarn run build:module && yarn run build:browser"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git://github.com/penpot/mousetrap.git"
},
"keywords": [
"keyboard",
"shortcuts",
"events"
],
"module": "dist/mousetrap.mjs",
"browser": "dist/mousetrap.js",
"author": "Craig Campbell",
"license": "Apache-2.0 WITH LLVM-exception",
"gitHead": "c202a0bd4967d5a3064f9cb376db51dec9345336",
"readmeFilename": "README.md",
"devDependencies": {
"chai": "^4.2.0",
"esbuild": "^0.24.0",
"grunt": "~1.0.3",
"grunt-complexity": "~1.1.0",
"jsdom": "^13.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"sinon": "^7.2.2"
}
}