-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
30 lines (30 loc) · 925 Bytes
/
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
{
"name": "pages-proxy",
"version": "1.0.1",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "https://github.com/cloud-gov/pages-proxy"
},
"homepage": "https://github.com/cloud-gov/pages-proxy",
"author": "Amir Reavis-Bey",
"private": true,
"engines": {
"node": "20.x.x"
},
"scripts": {
"build-redirects": "node ./bin/build-redirects.js",
"parse": "node ./bin/parse-conf.js && node ./bin/create-test-redirects",
"parse:integration": "INTEGRATION=true npm run parse",
"test": "mocha test/**/*.js",
"test:integration": "mocha --require test/integrationTestsHooks.js test/**/*.js",
"test:integration:website-config": "WEBSITE_CONFIG=true mocha --require test/integrationTestsHooks.js test/**/*.js"
},
"dependencies": {
"aws-sdk": "^2.1045.0",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"mocha": "^9.1.3",
"supertest": "^4.0.2"
}
}