-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 982 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
39
40
41
42
{
"name": "eor",
"type": "module",
"version": "0.2.0",
"description": "Eor is a try-catch wrapper that returns an [error, data] tuple.",
"main": "dist/index.js",
"keywords": [
"typescript",
"try",
"catch",
"wrapper",
"tuple",
"error"
],
"author": "Austin Gatlin",
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "npm run build -- --watch",
"pub": "npm version patch && npm publish && git push",
"test": "node --test",
"format": "prettier --write index.ts",
"prepare": "skooh"
},
"hooks": {
"pre-commit": "npm run format && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aegatlin/eor.git"
},
"bugs": {
"url": "https://github.com/aegatlin/eor/issues"
},
"homepage": "https://github.com/aegatlin/eor#readme",
"devDependencies": {
"@types/node": "^18.7.14",
"prettier": "^2.7.1",
"skooh": "^0.2.0",
"typescript": "^4.8.2"
}
}