-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 998 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
37
38
39
40
41
42
{
"name": "key-code",
"version": "0.0.2",
"description": "Library for key-code constants in ECMAScript/Javascript",
"main": "index.js",
"scripts": {
"test": "mocha **/*-spec.js",
"build": "gulp",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiagogarbazza/key-code.git"
},
"keywords": [
"key",
"code",
"keyboard",
"constant",
"javascript",
"js",
"ecmascript",
"es"
],
"author": "Thiago Garbazza <thiagogarbazza@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thiagogarbazza/key-code/issues"
},
"homepage": "https://github.com/thiagogarbazza/key-code#readme",
"devDependencies": {
"chai": "^3.5.0",
"eslint-config-restrict": "0.0.1",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.4",
"mocha": "^2.5.3",
"run-sequence": "^1.2.2"
}
}