This repository has been archived by the owner on Jan 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.34 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"private": true,
"devDependencies": {
"chromedriver": "^2.38.2",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"licensee": "^4.5.0",
"lint-staged": "^7.2.0",
"ncp": "^2.0.0",
"standard": "^10.0.3",
"tape": "^4.9.0",
"webdriverio": "^4.13.1"
},
"scripts": {
"lint": "standard",
"coverage": "NODE_ENV=test istanbul cover -- tape test/*.test.js",
"postcoverage": "istanbul check-coverage coverage/coverage.json --statements 100 --functions 100 --branches 100 --lines 100",
"test": "NODE_ENV=test tape test/**.test.js",
"testserver": "TMP=$(mktemp) ; ./make-keypair > $TMP ; . $TMP ; DIRECTORY=example-directory MAILGUN_KEY=key-7e4a9a258a0f7ac785449203354f8962 MAILGUN_DOMAIN=mail.rxnda.com node server.js ; rm $TMP",
"license": "licensee --errors-only",
"precommit": "lint-staged",
"outdated": "npm outdated | tee outdated.log"
},
"dependencies": {
"ajv": "^6.4.0",
"anniversary": "^1.1.2",
"busboy": "^0.2.14",
"commonform-analyze": "^3.0.0",
"commonform-docx": "^1.3.5",
"commonform-hash": "^0.5.0",
"commonform-html": "^2.0.0",
"commonform-validate": "^1.0.0",
"concat-stream": "^1.6.2",
"docx-content-type": "^1.0.0",
"ecb": "^1.0.0",
"english-list": "^1.0.0",
"escape-string-regexp": "^1.0.5",
"etag": "^1.8.1",
"form-data": "^2.3.2",
"html-entities": "^1.2.1",
"http-hash": "^2.0.0",
"json-parse-errback": "^2.0.1",
"json-stable-stringify": "^1.0.1",
"mkdirp": "^0.5.1",
"node-schedule": "^1.3.0",
"ooxml-signature-pages": "^2.0.0",
"outline-numbering": "^1.0.2",
"pino": "^4.16.1",
"pump": "^3.0.0",
"read-random": "^1.0.0",
"replacestream": "^4.0.3",
"reviewers-edition-compare": "^1.0.5",
"reviewers-edition-parse": "^2.0.6",
"reviewers-edition-spell": "^2.0.0",
"rimraf": "^2.6.2",
"run-parallel": "^1.1.9",
"run-parallel-limit": "^1.0.5",
"run-series": "^1.1.8",
"run-waterfall": "^1.1.6",
"send": "^0.16.2",
"signature-page-schema": "^1.0.1",
"sodium-native": "^2.1.6",
"stripe": "^5.8.0",
"uuid": "^3.2.1",
"validate-california-attorney-email": "^1.0.0",
"w3-is-email": "0.0.1",
"word-wrap": "^1.2.3",
"wordwrap": "^1.0.0",
"xtend": "^4.0.1"
},
"lint-staged": {
"*.js": "standard",
"*.md": "standard-markdown"
}
}