forked from traverse1984/oxide.ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1016 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": "@modfy/oxide",
"version": "0.9.12",
"description": "Rust's Option<T> and Result<T, E>, implemented for TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "tsup src/index.ts --dts",
"test": "nyc mocha -r ts-node/register 'tests/**/*'"
},
"keywords": [
"rust",
"option",
"result",
"match",
"monad",
"functional",
"fp"
],
"author": "Matthew Wilson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/traverse1984/oxide.ts.git"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"chai": "^4.3.6",
"eslint": "^8.8.0",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.5.0",
"tsup": "^5.12.1",
"typescript": "^4.5.5"
}
}