forked from cloud-gov/pages-redirects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "pages-redirects",
"version": "1.0.0",
"main": "build.js",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "https://github.com/18f/pages-redirects"
},
"homepage": "https://github.com/18f/pages-redirects",
"author": "GSA TTS",
"private": true,
"engines": {
"node": "^20.x.x"
},
"scripts": {
"start": "npm run build",
"eslint": "eslint",
"test": "tape test/unit/**/*.js | tap-summary --no-progress",
"test-prod": "TARGET_HOST=https://pages.18f.gov npm run test-integration",
"test-docker": "docker-compose up -d && sleep 2 && docker-compose run test_client npm run test-integration && docker-compose stop",
"test-integration": "tape test/integration/**/*.js | tap-summary --no-progress",
"clean": "rm out/*.conf",
"build": "node build.js",
"build-docker": "npm run build && docker-compose build"
},
"devDependencies": {
"eslint": "^8.49.0",
"js-yaml": "^4.1.0",
"nunjucks": "^3.2.4",
"request": "^2.88.2",
"tap-summary": "^4.0.0",
"tape": "^5.6.6"
}
}