-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.47 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": "earthdata-pub-api",
"version": "1.1.0",
"description": "Collection of lambda functions and layers for Earthdata Pub",
"scripts": {
"clean-modules": "rm -rf package-lock.json node_modules/ src/*/package-lock.json src/*/node_modules/",
"build-docker-image": "docker build . -f ./Dockerfile -t edpub-build",
"build": "bash ./scripts/build.sh",
"build-in-docker": "docker run --rm -v `pwd`:`pwd` -w `pwd` edpub-build npm run build",
"build:local": "bash ./scripts/build-local.sh",
"build-in-docker:local": "docker run --rm -v `pwd`:`pwd` -w `pwd` edpub-build npm run build:local",
"start": "docker-compose up",
"start:detached": "docker-compose up -d",
"stop": "docker-compose down",
"lint": "eslint ./src/nodejs/lambda-layers ./src/nodejs/lambda-handlers -c eslint.config.json",
"lint-fix": "eslint --fix ./src/nodejs/lambda-layers ./src/nodejs/lambda-handlers -c eslint.config.json",
"test": "jest -c jest.config.js --all",
"generate-docs": "bash ./scripts/generate-jsdoc.sh && bash ./scripts/generate-apidoc.sh"
},
"author": "Brian Ellingson",
"license": "BSD 3-Clause License",
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"jest": "^27.3.1",
"jsdoc": "^3.6.4"
},
"repository": {
"type": "git",
"url": "https://github.com/eosdis-nasa/earthdata-pub-api.git"
},
"dependencies": {}
}