-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "keyboard-ts",
"version": "2.0.0",
"description": "Keyboard shortcut listener library in TS",
"keywords": [
"keyboard",
"shortcut",
"combo",
"listener",
"typescript"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.43.0",
"webpack-cli": "^4.7.2"
},
"scripts": {
"build": "rm -rf dist && webpack --config=./webpack.config.js",
"prepublishOnly": "npm run test && npm run build",
"test": "jest --config=./jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fingerartur/keyboard.git"
},
"author": "Artur Finger <fingerartur@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fingerartur/keyboard/issues"
},
"homepage": "https://github.com/fingerartur/keyboard#readme"
}