-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.71 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.71 KB
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
52
53
54
55
56
57
{
"name": "@testingrequired/attempted",
"version": "0.0.3",
"description": "Typed error handling for functions",
"main": "dist/index.umd.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/testingrequired/attempted.git"
},
"homepage": "https://testingrequired.github.io/attempted",
"author": {
"name": "Kylee Tilley",
"email": "kyleetilley@gmail.com",
"url": "https://www.testingrequired.com/"
},
"scripts": {
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:types": "vitest typecheck --run",
"test:mutants": "stryker run",
"build": "npm run build:code && npm run build:docs",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format:check": "prettier . --check",
"format:write": "prettier . --write",
"verify": "npm run test:types && npm run test:coverage && npm run lint && npm run format:check && npm run build",
"build:code": "vite build",
"build:docs": "npx typedoc --plugin typedoc-plugin-missing-exports src/index.ts"
},
"engines": {
"node": "^16.18.0"
},
"devDependencies": {
"@stryker-mutator/core": "7.1.1",
"@stryker-mutator/vitest-runner": "7.1.1",
"@typescript-eslint/eslint-plugin": "6.2.1",
"@typescript-eslint/parser": "6.2.1",
"@vitest/coverage-v8": "0.33.0",
"prettier": "3.0.1",
"typedoc-plugin-missing-exports": "2.0.0",
"typescript": "^4.9.4",
"vite": "4.4.4",
"vite-plugin-dts": "3.3.1",
"vitest": "0.33.0"
},
"files": [
"dist/attempt.d.ts",
"dist/attempt.d.ts.map",
"dist/index.d.ts",
"dist/index.d.ts.map",
"dist/index.mjs",
"dist/index.umd.js"
]
}