-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 906 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
{
"name": "rescript-js-collections",
"description": "Bindings to JavaScript primitive Set and Map types",
"version": "1.9.0",
"scripts": {
"copy-git-hooks": "mkdir -p ./.git/hooks && cp -v ./hooks/* ./.git/hooks",
"prepare": "yarn copy-git-hooks",
"re:clean": "bsb -clean-world",
"re:build": "bsb -make-world",
"re:watch": "bsb -make-world -w",
"test": "jest __tests__/*.bs.js"
},
"keywords": [
"BuckleScript"
],
"author": "",
"lint-staged": {
"*.{re,rei}": [
"bsrefmt --in-place"
],
"*.{res,resi}": [
"bash formateach.sh"
],
"*.{json,yaml}": [
"prettier --write"
]
},
"license": "MIT",
"peerDependencies": {
"bs-platform": "^7 || ^8 || ^9"
},
"devDependencies": {
"bs-platform": "^9",
"jest": "^26.4.2",
"lint-staged": "^10.2.11",
"prettier": "^2.1.0",
"reason-jest": "^2.2.0"
}
}