-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.25 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
54
55
56
57
58
{
"name": "ultres",
"version": "2.0.0",
"description": "Flexible and functional `Result` type for handling success and error cases.",
"type": "module",
"files": [
"async.cjs",
"async.d.ts",
"async.mjs",
"result.cjs",
"result.d.ts",
"result.mjs"
],
"main": "./result.cjs",
"types": "./result.d.ts",
"exports": {
".": {
"import": "./result.mjs",
"require": "./result.cjs",
"types": "./result.d.ts"
},
"./async": {
"import": "./async.mjs",
"require": "./async.cjs",
"types": "./async.d.ts"
}
},
"scripts": {
"build": "rollup -c",
"docsify": "docsify serve .",
"lint": "standard",
"test": "c8 ava",
"prepublishOnly": "npm run lint && npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greguz/ultres.git"
},
"keywords": [
"rust",
"result",
"async",
"promise"
],
"author": "Giacomo Gregoletto",
"license": "MIT",
"bugs": {
"url": "https://github.com/greguz/ultres/issues"
},
"homepage": "https://greguz.github.io/ultres/",
"devDependencies": {
"ava": "^6.1.3",
"c8": "^10.1.2",
"docsify-cli": "^4.4.4",
"rollup": "^4.21.0",
"standard": "^17.1.0"
}
}