-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.36 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
{
"name": "types",
"version": "1.0.0",
"type": "module",
"description": "NSDA Typescript Types",
"main": "index.ts",
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts* --max-warnings 0",
"format": "prettier src/ --write",
"format-check": "prettier src/ --check",
"test": "vitest watch",
"test-silent": "vitest --silent",
"test-cover": "vitest --coverage",
"test-ci": "vitest --run",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/speechanddebate/types.git"
},
"author": "Aaron Hardy <[email protected]> (https://speechanddebate.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/speechanddebate/types/issues"
},
"homepage": "https://github.com/speechanddebate/types#readme",
"devDependencies": {
"@speechanddebate/eslint-config-nsda": "git+https://github.com/speechanddebate/eslint-config-nsda.git#v2",
"@typescript-eslint/parser": "^7.6.0",
"chai": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"globals": "^14.0.0",
"husky": "^9.0.11",
"prettier": "3.2.5",
"typescript": "^5.2.2",
"typescript-eslint": "^7.1.1"
}
}