-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathpackage.json
60 lines (60 loc) · 1.81 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
{
"name": "@cumulus/integration-tests",
"version": "20.0.0",
"description": "Integration tests",
"bin": {
"cumulus-test": "./bin/cli.js"
},
"engines": {
"node": ">=20.12.2"
},
"main": "index.js",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/nasa/cumulus/tree/master/packages/integration-tests/README.md",
"repository": {
"type": "git",
"url": "https://github.com/nasa/cumulus"
},
"scripts": {
"build": "rm -rf dist && mkdir dist && ../../node_modules/.bin/webpack",
"build-docs": "../../node_modules/.bin/jsdoc2md --template README.hbs Collections.js Executions.js Granules.js Providers.js Rules.js > README.md",
"clean": "rm -rf dist",
"package": "npm run build",
"test": "../../node_modules/.bin/ava",
"test:ci": "../../scripts/run_package_ci_unit.sh",
"test:coverage": "../../node_modules/.bin/nyc npm test",
"coverage": "python ../../scripts/coverage_handler/coverage.py"
},
"author": "Cumulus Authors",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/client-lambda": "^3.621.0",
"@cumulus/api": "20.0.0",
"@cumulus/api-client": "20.0.0",
"@cumulus/aws-client": "20.0.0",
"@cumulus/cmr-client": "20.0.0",
"@cumulus/cmrjs": "20.0.0",
"@cumulus/common": "20.0.0",
"@cumulus/launchpad-auth": "20.0.0",
"@cumulus/logger": "20.0.0",
"@cumulus/message": "20.0.0",
"@cumulus/oauth-client": "20.0.0",
"base-64": "^0.1.0",
"commander": "^2.15.0",
"dotenv": "^8.2.0",
"fs-extra": "^5.0.0",
"got": "^11.8.5",
"handlebars": "^4.0.11",
"js-yaml": "^3.13.1",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"p-map": "^2.1.0",
"p-retry": "^2.0.0",
"p-wait-for": "^2.0.1",
"uuid": "^3.2.1",
"xml2js": "0.5.0"
}
}