-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
46 lines (46 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
{
"name": "@github/hotkey",
"version": "2.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "github/hotkey",
"scripts": {
"build": "tsc && rollup -c",
"lint": "eslint . --ext .js,.ts && tsc --noEmit",
"test": "karma start karma.config.cjs",
"clean": "rm -rf dist",
"prebuild": "npm run clean && mkdir dist",
"pretest": "npm run build && npm run lint",
"prepublishOnly": "npm run test",
"buildSite": "npm run build && mkdir -p pages/hotkey && cp -r dist/* pages/hotkey"
},
"files": [
"dist",
"index.d.ts"
],
"keywords": [],
"license": "MIT",
"prettier": "@github/prettier-config",
"devDependencies": {
"@github/prettier-config": "0.0.4",
"chai": "^4.3.10",
"chromium": "^3.0.3",
"eslint": "^8.52.0",
"eslint-plugin-github": "^4.10.1",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^10.2.0",
"rollup": "^4.1.4",
"typescript": "^5.6.3",
"eslint-import-resolver-typescript": "^3.6.3"
},
"eslintIgnore": [
"dist/"
]
}