-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.27 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.27 KB
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
59
60
61
62
63
{
"name": "rust-option",
"version": "0.12.0",
"description": "brings Option / Result / match from Rust to Javascript",
"repository": {
"type": "git",
"url": "https://github.com/exoticknight/rust-option.git"
},
"main": "dist/index.js",
"type": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"test": "nyc tape test/*.spec.ts | tap-spec; nyc report --reporter=text",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"build": "rm -rf dist && tsc",
"prebuild": "npm test"
},
"keywords": [
"rust",
"Option",
"Result",
"Some",
"None",
"Ok",
"Err",
"Error",
"expect",
"unwrap",
"map",
"flatMap",
"and",
"or",
"filter",
"xor",
"equal",
"rustoption",
"rustresult",
"match"
],
"author": {
"email": "draco.knight0@gmail.com",
"name": "exoticknight"
},
"license": "MIT",
"devDependencies": {
"@types/lodash.isequal": "^4.5.5",
"@types/node": "^10.17.17",
"@types/tape": "^4.2.34",
"codecov": "^3.5.0",
"nyc": "^15.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.13.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"dependencies": {
"lodash.isequal": "^4.5.0"
}
}