-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.19 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
{
"name": "commonform-validate",
"description": "validate Objects against Common Form's core schema for legal language",
"version": "4.0.0",
"author": "Kyle E. Mitchell <[email protected]> (https://kemitchell.com)",
"dependencies": {
"contiguous": "^1.0.2",
"has": "^1.0.3",
"is-array": "1.0.1",
"is-object": "^1.0.2",
"is-string": "^1.0.7",
"legal-versioning-regexp": "^1.0.0"
},
"devDependencies": {
"defence-cli": "^3.0.1",
"nyc": "^15.1.0",
"replace-require-self": "^1.1.1",
"standard": "^14.0.2",
"standard-markdown": "^5.0.1"
},
"files": [
"LICENSE",
"README.md",
"index.js"
],
"homepage": "https://commonform.github.io",
"keywords": [
"contracts",
"document assembly",
"knowledge management",
"law",
"schema",
"validation"
],
"license": "BlueOak-1.0.0",
"repository": "commonform/commonform-validate",
"scripts": {
"lint": "standard && standard-markdown",
"test": "defence README.md | replace-require-self | node",
"precoverage": "defence README.md | replace-require-self > README.js",
"coverage": "nyc --reporter=lcov --reporter=text-summary node README.js ; rm -f README.js"
}
}