-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "ascii-category",
"version": "1.0.1",
"description": "",
"main": "dist/ascii-category.js",
"browser": "dist/ascii-category.umd.js",
"module": "dist/ascii-category.esm.js",
"scripts": {
"build": "npm run lint && rollup -c",
"lint": "eslint --ext .ts .",
"docs": "typedoc --out docs --mode modules",
"test": "npm run lint && ts-node test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awerlang/ascii-category.git"
},
"keywords": [
"ascii",
"keyboard",
"key",
"codes",
"ansi",
"char",
"codes",
"keydown",
"keypress",
"keyup"
],
"author": "André Werlang",
"license": "MIT",
"bugs": {
"url": "https://github.com/awerlang/ascii-category/issues"
},
"homepage": "https://github.com/awerlang/ascii-category#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"eslint": "5.16.0",
"rollup": "1.9.3",
"rollup-plugin-typescript": "1.0.1",
"rollup-plugin-uglify": "6.0.2",
"ts-node": "8.0.3",
"typedoc": "0.14.2",
"typescript": "3.4.3"
}
}