-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
38 lines (38 loc) · 1021 Bytes
/
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
{
"name": "@github/combobox-nav",
"description": "Attach combobox navigation behavior to an input.",
"version": "2.1.5",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": "github/combobox-nav",
"prettier": "@github/prettier-config",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint .",
"prebuild": "npm run clean && npm run lint && mkdir dist",
"build": "tsc",
"test": "karma start karma.config.cjs",
"pretest": "npm run build",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@github/prettier-config": "^0.0.6",
"chai": "^4.3.9",
"chromium": "^3.0.3",
"eslint": "^8.50.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",
"typescript": "^5.2.2"
}
}