-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.34 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
{
"name": "relude-parse",
"version": "0.8.0",
"description": "Monadic parsing with Relude",
"main": "index.js",
"scripts": {
"clean": "rescript clean",
"build": "rescript build",
"watch": "rescript build -w",
"test": "jest",
"coverage": "jest --coverage --coverage-reporters=lcov --coverage-reporters=text --coverage-directory ./docs/coverage",
"cleanbuild": "yarn run clean && yarn run build",
"cleantest": "yarn run cleanbuild && yarn run test",
"cleancoverage": "yarn run cleanbuild && yarn run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reazen/relude-parse.git"
},
"author": "Reazen",
"license": "MIT",
"bugs": {
"url": "https://github.com/reazen/relude-parse/issues"
},
"homepage": "https://github.com/reazen/relude-parse#readme",
"peerDependencies": {
"bs-bastet": "github:dsiu/rescript-bastet#main",
"relude": "github:dsiu/rescript-relude#main"
},
"devDependencies": {
"rescript": "^10.0.0",
"@glennsl/bs-jest": "^0.5.1",
"bs-bastet": "github:dsiu/rescript-bastet#main",
"relude": "github:dsiu/rescript-relude#main"
},
"jest": {
"verbose": false,
"testPathIgnorePatterns": [
"/node_modules/",
"/testUtils/"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/testUtils/"
]
}
}