-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "opres",
"version": "2.6.0",
"description": "Rust-inspired Result object for more elegant success and failure handling",
"main": "dist",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"preversion": "npm test",
"prepublish": "npm run test && npm run build",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joeapearson/result.git"
},
"keywords": [
"result",
"error",
"catch",
"throw"
],
"author": "Joe Pearson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/joeapearson/result/issues"
},
"homepage": "https://github.com/joeapearson/result#readme",
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "2.20.1",
"jest": "25.1.0",
"ts-jest": "25.2.1",
"typescript": "3.8.3"
}
}