-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "bs-validation",
"version": "2.0.0",
"description": "BucklesScript bindings to the validationjs library",
"scripts": {
"build": "bsb -make-world",
"clean": "bsb -clean-world",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"install:peers": "yarn add $(jq -r '.peerDependencies|keys|join(\" \")' package.json)",
"precommit": "lint-staged",
"start": "bsb -make-world -w",
"test": "yarn run clean; yarn run build; jest --coverage && yarn run coverage",
"watch:jest": "jest --coverage --watchAll"
},
"lint-staged": {
"*.{re,rei}": [
"refmt --in-place",
"git add"
]
},
"keywords": [
"BuckleScript",
"folktale",
"fp",
"reason",
"reasonml",
"password",
"validation",
"node"
],
"bugs": "https://github.com/scull7/bs-validation/issues",
"main": "src/Validation.bs.js",
"homepage": "https://github.com/scull7/bs-validation",
"repository": "[email protected]:scull7/bs-validation.git",
"author": "Nathan Sculli <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.2",
"coveralls": "^3.0.2",
"husky": "^0.14.3",
"lint-staged": "^7.1.0",
"nyc": "^12.0.2"
},
"peerDependencies": {
"bs-platform": "^4.0.3"
}
}