-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "keydrown",
"version": "1.2.8",
"main": "./dist/keydrown.js",
"homepage": "http://jeremyckahn.github.com/keydrown",
"author": "Jeremy Kahn <jeremyckahn@gmail.com>",
"description": "A JavaScript key state handler for web apps",
"contributors": [
"Andre Z. Sanchez <andrezacsanchez@gmail.com> (http://andrezs.com)",
"Gabriel Lopez <jepunto@gmail.com>",
"Kev Zettler"
],
"scripts": {
"build": "grunt build",
"lint": "grunt jshint",
"preversion": "npm run lint",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags && npm publish"
},
"license": "MIT",
"keywords": [
"JavaScript",
"keyboard",
"state handler",
"tiny"
],
"repository": {
"type": "git",
"url": "https://github.com/jeremyckahn/keydrown.git"
},
"devDependencies": {
"grunt": "^1.0.3",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-jshint": "^2.0.0",
"grunt-contrib-uglify": "^4.0.0",
"grunt-contrib-yuidoc": "^1.0.0"
}
}