-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "keyboard-shortcuts",
"version": "0.2.0",
"description": "Keyboard shortcuts",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && babel src --out-dir dist --ignore \"__tests__\"",
"lint": "eslint src/",
"mocha": "mocha **/*__tests__/* -R spec --require test-setup",
"test": "npm run lint && npm run mocha",
"prepublish": "npm test && npm run build && npm shrinkwrap",
"postpublish": "rm npm-shrinkwrap.json"
},
"repository": {
"type": "git",
"url": "https://github.com/ThomWright/keyboard-shortcuts"
},
"keywords": [],
"author": "Thom Wright <npm@thomwright.co.uk> (http://thomwright.co.uk/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ThomWright/keyboard-shortcuts/issues"
},
"homepage": "https://github.com/ThomWright/keyboard-shortcuts",
"dependencies": {
"symbol-enum": "^3.1.0"
},
"devDependencies": {
"babel": "^5.4.7",
"babel-eslint": "^4.1.0",
"chai": "^3",
"eslint": "^1.3.0",
"eslint-config-circuitsim": "^0",
"mocha": "^2.2.5",
"rimraf": "^2.3.4"
}
}