-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
{
"name": "abap-package-version-shield",
"repository": {
"type": "git",
"url": "https://github.com/sbcgua/abap-package-version-shield.git"
},
"version": "1.0.4",
"description": "Custom handler for shields.io to display abap package version",
"main": "playground.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:e2e": "jest -c test/jest.e2e.config.js",
"test:e2e:dev": "env E2E_TARGET=dev jest -c test/jest.e2e.config.js",
"test:e2e:qa": "env E2E_TARGET=qa jest -c test/jest.e2e.config.js",
"lint": "eslint . lib",
"deploy:prod": "bash ./bin/deploy-prod.sh",
"deploy:qa": "bash ./bin/deploy-qa.sh",
"deploy:dev": "bash ./bin/deploy-dev.sh",
"shutdown:qa": "bash ./bin/remove-qa.sh",
"shutdown:dev": "bash ./bin/remove-dev.sh",
"logs": "serverless logs -f getAbapVersionShieldJson --stage dev -t"
},
"author": "Alexander Tsybulsky",
"license": "ISC",
"devDependencies": {
"eslint": "^8.24.0",
"jest": "^29.1.1",
"node-fetch": "^2.6.7",
"serverless": "^3.22.0",
"serverless-domain-manager": "^6.1.0"
},
"dependencies": {
"fast-xml-parser": "^4.2.5",
"lodash.pick": "^4.4.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"e2e"
]
}
}