-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.5 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "travi-api",
"main": "index.js",
"license": "MIT",
"author": "Matt Travi <[email protected]> (https://matt.travi.org/)",
"private": true,
"repository": "travi/travi-api",
"scripts": {
"clean": "rimraf dist/",
"lint:js": "eslint . --cache",
"lint:md": "globstar --node -- markdownlint **/*.md",
"lint:engines": "check-engine",
"tests:unit": "nyc run-s tests:unit:base",
"tests:unit:base": "mocha --recursive test/unit",
"tests:integration:base": "cucumber-js test/integration --require-module babel-register --format-options '{\"snippetInterface\": \"async-await\"}' --exit",
"tests:integration": "run-s tests:integration:base -- --tags 'not @wip'",
"tests:integration:wip": "run-s tests:integration:base -- --tags @wip",
"disabled:tests:pact": "run-s pact:verify",
"prepact:verify": "run-s build start & echo $! > $TMPDIR/pact-verify.pid",
"pact:verify": "babel-node scripts/verify-pacts.js",
"postpact:verify": "kill -TERM `cat $TMPDIR/pact-verify.pid`",
"pretest": "run-s clean",
"test": "run-s lint:* tests:*",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"babel": "babel lib --source-maps --out-dir dist",
"build": "run-p babel",
"start": "node dist/app.js",
"heroku:production": "run-s build",
"dev": "nodemon lib/app.js",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"engines": {
"node": "16.x",
"npm": "8.x.x"
},
"devDependencies": {
"@travi/any": "2.0.19",
"@travi/eslint-config": "1.0.67",
"@travi/eslint-config-cucumber": "1.0.5",
"@travi/eslint-config-hal": "1.0.0",
"@travi/eslint-config-mocha": "1.0.14",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.7.0",
"chai": "4.3.4",
"check-engine": "1.10.1",
"commitlint-config-travi": "1.4.29",
"coveralls": "3.1.1",
"cucumber": "6.0.5",
"cz-conventional-changelog": "3.3.0",
"dotenv": "10.0.0",
"formatio": "1.2.0",
"globstar": "1.0.0",
"grunt": "1.5.3",
"grunt-babel": "8.0.0",
"grunt-cli": "1.4.3",
"grunt-flyway": "travi/grunt-flyway#credentials",
"hoek": "6.1.3",
"husky": "7.0.4",
"load-grunt-config": "4.0.1",
"markdownlint-cli": "0.31.0",
"mocha": "9.2.2",
"nodejs-dashboard": "0.5.1",
"nodemon": "2.0.17",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"oz": "4.0.5",
"pact": "4.3.2",
"proxyquire": "2.1.3",
"referee-more-assertions": "0.2.0",
"referee-sinon": "1.0.3",
"rimraf": "3.0.2",
"sinon": "11.1.2",
"time-grunt": "2.0.0"
},
"dependencies": {
"bell": "8.9.0",
"boom": "7.3.0",
"clone": "2.1.2",
"deep-freeze": "0.0.1",
"dotenv-safe": "8.2.0",
"glue": "4.2.1",
"good": "7.3.0",
"good-console": "8.0.0",
"good-squeeze": "5.1.0",
"halacious": "5.1.2",
"hapi": "16.7.0",
"hapi-auth-cookie": "7.1.0",
"hapi-graceful-shutdown-plugin": "1.0.1",
"hapi-mustache": "0.0.1",
"hapi-swaggered": "2.12.2",
"hapi-swaggered-ui": "2.6.2",
"http-status-codes": "1.4.0",
"inert": "4.2.1",
"joi": "14.3.1",
"lodash": "4.17.21",
"md5": "2.3.0",
"newrelic": "8.6.0",
"path": "0.12.7",
"query-string": "7.0.1",
"scarecrow": "3.0.4",
"snyk": "1.1064.0",
"vision": "4.1.1",
"visionary": "6.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"snyk": true
}