-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.77 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.77 KB
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
76
77
78
79
{
"name": "licensezero-server",
"version": "0.0.0",
"description": "License Zero paid license portal",
"private": true,
"author": "Kyle E. Mitchell <kyle@kemitchell.com> (https://kemitchell.com/)",
"dependencies": {
"ajv": "^6.12.2",
"argon2": "^0.26.2",
"busboy": "^0.3.1",
"commonform-commonmark": "^6.0.0",
"commonform-html": "^3.6.1",
"commonform-prepare-blanks": "^1.0.2",
"commonform-terminal": "^1.0.1",
"commonmark": "^0.30.0",
"do-not-cache": "^1.0.1",
"error": "^10.4.0",
"flush-write-stream": "^2.0.0",
"form-data": "^3.0.0",
"handlebars": "^4.7.7",
"has": "^1.0.3",
"html-entities": "^1.3.1",
"http-hash": "^2.0.1",
"http-https": "^1.0.0",
"iso-3166-2": "^1.0.0",
"json-parse-errback": "^2.0.1",
"json-stable-stringify": "^1.0.1",
"licensezero-jurisdictions": "^1.0.1",
"linkify-urls": "^3.1.1",
"lock": "^1.1.0",
"mustache": "^4.2.0",
"node-schedule": "^1.3.2",
"outline-numbering": "^2.0.0",
"pino": "^6.13.3",
"pino-http": "^5.8.0",
"pump": "^3.0.0",
"run-parallel": "^1.2.0",
"run-parallel-limit": "^1.1.0",
"run-series": "^1.1.9",
"run-waterfall": "^1.1.7",
"send": "^0.17.1",
"simple-concat": "^1.0.1",
"simple-get": "^4.0.0",
"sodium-native": "^3.2.1",
"split2": "^3.2.2",
"string.prototype.padstart": "^3.1.3",
"strip-ansi": "^6.0.0",
"stripe": "^8.178.0",
"url-parse": "^1.5.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"chromedriver": "^94.0.0",
"creditstxt": "^1.0.2",
"depcheck": "^1.4.2",
"istanbul": "^0.4.5",
"licensee": "^8.2.0",
"npm-authors-contributors": "^1.1.2",
"reformat-json-files": "^1.0.1",
"rimraf": "^3.0.2",
"standard": "^14.3.4",
"tape": "^5.3.1",
"webdriverio": "^6.1.14"
},
"scripts": {
"credits": "cp credits.txt.header static/credits.txt ; creditstxt >> static/credits.txt",
"precoverage": "chromedriver >/dev/null &",
"coverage": "NODE_ENV=test istanbul cover -- tape test/*.test.js",
"depcheck": "depcheck --ignores husky,chromedriver,lint-staged,standard,licensee,npm-authors-contributors,reformat-json-files,creditstxt",
"postcoverage": "istanbul check --statements 100 --functions 100 --branches 100 --lines 100",
"pretest": "chromedriver >/dev/null &",
"test": "NODE_ENV=test tape test/**.test.js ; killall chromedriver",
"posttest": "! grep -F \"tape.only\" test/**.test.js",
"testserver": "TMP=$(mktemp) ; ./make-keypair > $TMP ; . $TMP ; ./make-test-data ; NODE_ENV=test PORT=8080 COMMISSION=1 DIRECTORY=test-server-directory node server.js ; rm $TMP",
"lint": "standard",
"fix": "reformat-json-files $(git ls-files | grep '\\.json$') ; standard --fix",
"licenses": "licensee --errors-only"
}
}