-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 968 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 968 Bytes
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
{
"name": "relude-random",
"version": "0.2.0",
"scripts": {
"build": "bsb -make-world",
"clean": "bsb -clean-world",
"test": "jest",
"coverage": "jest --coverage --coverage-reporters=lcov --coverage-reporters=text --coverage-directory ./docs/coverage",
"cleanbuild": "npm run clean && npm run build",
"cleantest": "npm run cleanbuild && npm run test",
"cleancoverage": "npm run cleanbuild && npm run coverage",
"watch": "bsb -make-world -w",
"start": "bsb -make-world -w"
},
"keywords": [
"BuckleScript"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"bs-bastet": "^1.2.5",
"bs-platform": "^7.2.2",
"relude": "^0.59.0"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.9",
"bs-bastet": "^1.2.5",
"bs-platform": "^7.2.2",
"relude": "^0.59.0"
},
"jest": {
"coveragePathIgnorePatterns": [
"./test"
],
"testMatch": [
"**/test/*.js"
]
}
}