-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 2.06 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
{
"name": "@fs/ppaas-agent",
"version": "3.3.3",
"description": "Agent Service for running pewpew tests",
"main": "dist/src/app.js",
"scripts": {
"fix:start": "rimraf \"node_modules/ppaas-common/node_modules/config-wasm/\"",
"start": "npm run fix:start && node ./dist/src/app.js -r dotenv-flow/config",
"build": "npm run buildonly",
"buildonly": "tsc",
"test": "npm run buildonly && nyc mocha ./dist/test -r dotenv-flow/config",
"testonly": "nyc mocha ./dist/test -r dotenv-flow/config",
"acceptance": "mocha ./dist/acceptance --timeout 130000 -r dotenv-flow/config",
"coverage": "npm run build && nyc mocha ./dist/test ./dist/createtest --timeout 500000 -r dotenv-flow/config",
"integration": "npm run build && nyc mocha --timeout 500000 ./dist/createtest -r dotenv-flow/config",
"clean": "rimraf dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FamilySearch/pewpew.git"
},
"bugs": {
"url": "https://github.com/FamilySearch/pewpew/issues"
},
"homepage": "https://github.com/FamilySearch/pewpew#readme",
"engines": {
"node": "18"
},
"nyc": {
"reporter": ["lcov", "text"],
"exclude": "**/*.spec.ts"
},
"dependencies": {
"@fs/config-wasm": "*",
"@fs/ppaas-common": "*",
"bunyan": "~1.8.0",
"dotenv": "^16.0.0",
"dotenv-flow": "^4.0.1",
"expiry-map": "^2.0.0",
"express": "^4.18.2",
"rimraf": "^5.0.0",
"semver": "^7.5.2"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.363.0",
"@aws-sdk/client-sqs": "^3.363.0",
"@aws-sdk/util-stream-node": "^3.363.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@types/bunyan": "~1.8.8",
"@types/chai": "^4.3.5",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.0",
"@types/node": "^22.0.0",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"axios": "~1.7.0",
"chai": "^4.3.7",
"eslint": "^9.8.0",
"mocha": "^10.2.0",
"nyc": "^17.0.0",
"typescript": "^5.3.0"
}
}