forked from scull7/bs-ajv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
56
57
{
"name": "bs-ajv",
"version": "1.0.1",
"description": "BucklesScript bindings to Ajv (Another JSON Validator)",
"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",
"reason",
"reasonml",
"validator",
"validation",
"JSON",
"schema",
"jsonschema",
"json-schema",
"json-schema-validator",
"json-schema-validation",
"node"
],
"bugs": "https://github.com/scull7/bs-ajv/issues",
"main": "src/Ajv.bs.js",
"homepage": "https://github.com/scull7/bs-ajv",
"repository": "[email protected]:scull7/bs-ajv.git",
"author": "Nathan Sculli <[email protected]>",
"license": "MIT",
"dependencies": {
"@glennsl/bs-json": "^1.3.2",
"ajv": "^6.2.1"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.2",
"bs-platform": "^3.0.0",
"coveralls": "^3.0.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.0",
"nyc": "^11.4.1"
},
"peerDependencies": {
"@glennsl/bs-json": "^1.3.2",
"bs-platform": "^3.0.0"
}
}