-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 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
47
48
49
50
51
52
53
{
"name": "@aarondill/never-throw",
"version": "1.0.4",
"description": "Simplfy Error Handling",
"keywords": [
"try",
"catch",
"nothrow",
"never throw",
"type safe",
"safe"
],
"repository": {
"type": "git",
"url": "https://github.com/aarondill/never-throw"
},
"license": "MIT",
"author": "Aaron Dill",
"main": "dist/neverThrow.js",
"types": "dist/neverThrow.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "npm run lint && npm run clean",
"build": "tsc --build",
"clean": "rimraf ./dist",
"prelint": "npm run sort-package",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.mts,.cts,.tsx --fix",
"prepublishOnly": "npm run build",
"sort-package": "sort-package-json",
"test": "jest",
"prewatch": "npm run clean",
"watch": "tsc --watch"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"jest": "^29.3.1",
"release-it": "^15.6.0",
"rimraf": "^3.0.2",
"sort-package-json": "^2.1.0",
"ts-jest": "^29.0.3",
"tsafe": "^1.4.1",
"typescript": "^4.9.4"
},
"publishConfig": {
"access": "public"
}
}