-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1016 Bytes
/
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
{
"name": "keystroke-handler",
"version": "0.1.1",
"description": "",
"main": "lib/KeyHandler.js",
"scripts": {
"coverage": "nyc --reporter lcov --reporter text npm test",
"lint": "eslint . && prettier --check '**/*.js'",
"test": "mocha"
},
"keywords": [],
"author": "Alex J Burke @alexjeffburke <[email protected]>",
"repository": "git://github.com/One-com/key-handler",
"license": "BSD-3-Clause",
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.1.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jsdom": "15.1.1",
"mocha": "^6.2.0",
"mocha-dominate": "^0.1.1",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"sinon": "^7.4.2",
"unexpected": "^11.8.0",
"unexpected-sinon": "^10.11.2"
},
"dependencies": {
"mousetrap": "^1.6.3"
}
}