-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.57 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "ts-key-enum",
"version": "3.0.1",
"description": "A TypeScript string enum for compile-time safety when working with event.key",
"main": "",
"files": [
"Key.enum.d.ts"
],
"types": "Key.enum.d.ts",
"scripts": {
"build": "tsc",
"scrape": "./node_modules/.bin/ts-node scrapeMDNForKeys.ts",
"tslint": "tslint -p .",
"tslint-fix": "tslint -p . --fix",
"prettier": "prettier --check '**/*.ts' '!dist/**'",
"prettier-fix": "prettier --write '**/*.ts' '!dist/**'",
"lint": "npm run prettier; npm run tslint",
"lint-fix": "npm run prettier-fix; npm run tslint-fix"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/nfriend/ts-key-enum.git"
},
"keywords": [
"typescript",
"javascript",
"keycodes",
"key",
"enum",
"ts",
"event.which",
"event.key",
"event.keycode"
],
"author": {
"name": "Nathan Friend",
"email": "hello@nathanfriend.io",
"url": "https://nathanfriend.io"
},
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/nfriend/ts-key-enum/issues"
},
"homepage": "https://gitlab.com/nfriend/ts-key-enum#readme",
"devDependencies": {
"@types/bluebird": "3.5.29",
"@types/cheerio": "0.22.14",
"@types/lodash": "4.14.146",
"@types/request": "2.48.3",
"@types/request-promise": "4.1.44",
"bluebird": "3.7.1",
"chalk": "3.0.0",
"cheerio": "1.0.0-rc.3",
"prettier": "1.19.1",
"request": "2.88.0",
"request-promise": "4.2.5",
"ts-node": "8.5.0",
"tslint": "5.20.1",
"typescript": "3.7.2"
}
}