-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
50 lines (50 loc) · 1.13 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
42
43
44
45
46
47
48
49
50
{
"name": "keycode-js",
"version": "3.1.0",
"description": "A JavaScript package with Key Code constants",
"license": "MIT",
"author": "Kabir Baidhya <[email protected]>",
"contributors": [
"Saugat Acharya <[email protected]>"
],
"main": "dist/keycode.cjs.js",
"module": "dist/keycode.esm.js",
"types": "mod.d.ts",
"unpkg": "dist/keycode.min.js",
"jsdelivr": "dist/keycode.min.js",
"files": [
"dist",
"mod.d.ts",
"bower.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kabirbaidhya/keycode-js.git"
},
"keywords": [
"keycode",
"constants",
"javascript",
"typescript",
"deno",
"js",
"ts"
],
"scripts": {
"build": "./t build",
"changelog": "./t changelog",
"prepublishOnly": "./t build",
"test": "./t build && ./t test",
"release": "./t bump"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^7.1.1",
"mocha-headless-chrome": "^2.0.3",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.26.0",
"typescript": "^3.8.3"
}
}