-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "js-keycodes",
"version": "1.1.2",
"description": "Identify and work with keycodes on JavaScript",
"main": "dist/keycodes.js",
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/node": "~12.12.22",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4"
},
"scripts": {
"prebuild": "rimraf ./dist",
"build": "tsc --declaration --outDir dist/",
"test": "jest --colors --coverage",
"test-watch": "jest --colors --watch",
"codecov": "codecov --token=$CODECOV_TOKEN"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carlos-algms/js-keycodes.git"
},
"keywords": [
"key-codes",
"keycodes",
"js",
"JavaScript"
],
"author": "Carlos A. Gomes <carlos.algms@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/carlos-algms/js-keycodes/issues"
},
"homepage": "https://github.com/carlos-algms/js-keycodes#readme",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}