This repository has been archived by the owner on Sep 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.84 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
{
"private": true,
"dependencies": {
"busboy": "^0.3.1",
"commonform-commonmark": "^6.0.0",
"commonform-docx": "^5.2.0",
"commonmark": "^0.29.1",
"cookie": "^0.4.1",
"do-not-cache": "^1.0.1",
"escape-html": "^1.0.3",
"form-data": "^3.0.0",
"gravatar": "^1.8.0",
"http-hash": "^2.0.1",
"iso-3166-2": "^1.0.0",
"json-parse-errback": "^2.0.1",
"lock": "^1.1.0",
"nodemailer": "^6.4.10",
"pino": "^6.3.2",
"pino-http": "^5.2.0",
"pump": "^3.0.0",
"run-auto": "^2.0.3",
"run-parallel": "^1.1.9",
"run-parallel-limit": "^1.0.5",
"run-series": "^1.1.8",
"secure-password": "^4.0.0",
"send": "^0.17.1",
"simple-concat-limit": "^2.0.3",
"split2": "^3.1.1",
"stripe": "^8.67.0",
"through2": "^4.0.2",
"url-parse": "^1.4.7",
"url-regex": "^5.0.0",
"uuid": "^8.2.0"
},
"devDependencies": {
"creditstxt": "^1.0.2",
"depcheck": "^0.9.2",
"husky": "^4.2.5",
"licensee": "^8.1.0",
"nyc": "^15.1.0",
"parse5": "^6.0.0",
"rimraf": "^3.0.2",
"simple-concat": "^1.0.0",
"sodium-native": "^3.2.0",
"standard": "^14.3.3",
"tape": "^5.0.1",
"webdriverio": "^6.1.22"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"scripts": {
"prestart": "if test \"$NODE_ENV\" = \"production\"; then npm run credits ; fi",
"credits": "cp credits.txt.header credits.txt ; creditstxt >> credits.txt",
"precommit": "npm run lint && npm run gotchas",
"coverage": "nyc --reporter=lcov --reporter=text npm run test",
"deps": "depcheck",
"fix": "standard --fix",
"gotchas": "! git grep tape.only test && ! git grep console.log test && ! git grep console.error test",
"licenses": "licensee --errors-only",
"lint": "standard",
"test": "NODE_ENV=test tape test/*.test.js"
}
}