forked from reazen/relude
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "relude",
"description": "Alternative standard library (prelude) for ReasonML",
"homepage": "https://github.com/reazen/relude",
"bugs": "https://github.com/reazen/relude/issues",
"version": "0.66.1",
"repository": {
"type": "git",
"url": "https://github.com/reazen/relude.git"
},
"scripts": {
"clean": "esy mel clean",
"build": "esy mel build",
"watch": "esy mel build -w",
"test": "jest",
"coverage": "npm run test",
"docs": "docsify serve ./docs",
"cleanbisect": "rm bisect*.coverage || true",
"cleanbuild": "npm run clean && npm run build",
"cleanwatch": "npm run clean && npm run watch",
"cleantest": "npm run cleanbuild && npm run test",
"cleancoverage": "npm run cleanbisect && BISECT_ENABLE=yes npm run cleanbuild && npm run coverage",
"releasebuild": "npm run cleancoverage"
},
"keywords": [
"ReasonML",
"Melange",
"Utility",
"Prelude",
"Standard Library"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@glennsl/bs-jest": "^0.7.0",
"bs-bastet": "^2.0.0",
"docsify-cli": "~4.4.0"
},
"peerDependencies": {
"bs-bastet": "^2.0.0"
},
"dependencies": {
"bisect_ppx": "^2.7.1"
},
"jest": {
"verbose": false,
"testPathIgnorePatterns": [
"/node_modules/",
"/testUtils/"
],
"setupFilesAfterEnv": [
"<rootDir>/_build/default/node_modules/bisect_ppx/src/runtime/js/jest.bs.js"
]
}
}