-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.86 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
{
"name": "gitrdonebot",
"version": "1.0.0",
"description": "GitRDoneBot for GitLab & AWS Lambda",
"scripts": {
"test:unit": "npx jest /__tests__/unit_tests --verbose --runInBand",
"test:mock": "npx jest /__tests__/component_builder_tests_with_mocks --verbose --runInBand",
"test:live": "npx jest /__tests__/live_gitlab_api_tests --verbose --runInBand",
"test:full": "npx jest /__tests__ --verbose --runInBand",
"build": "npx tsc -p .",
"lint": "npx eslint -c .eslintrc.js --ignore-path .eslintIgnore --ext .ts .",
"lambda": "serverless offline start",
"prettier": "npx prettier --list-different \"**/*.ts\"",
"prettier:fix": "npx prettier --list-different \"**/*.ts\" --write",
"publish": "typedoc --mode file --name GitRDoneBot --out public src --media media"
},
"author": "Cigna",
"license": "Apache-2.0",
"devDependencies": {
"@microsoft/tsdoc": "^0.12.19",
"@types/aws-lambda": "^8.10.39",
"@types/jest": "^25.1.4",
"@types/node-fetch": "^2.5.4",
"@types/supertest": "^2.0.8",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-security": "^1.4.0",
"jest": "^25.2.4",
"prettier": "2.0.2",
"serverless-dotenv-plugin": "^2.4.2",
"serverless-jest-plugin": "^0.3.0",
"serverless-offline": "^6.1.3",
"serverless-plugin-typescript": "^1.1.9",
"supertest": "^4.0.2",
"ts-jest": "^25.3.0",
"typedoc": "^0.17.7",
"typescript": "^3.7.3"
},
"dependencies": {
"@types/node": "^13.9.5",
"@types/serverless": "^1.18.6",
"ajv": "^7.0.3",
"http-status-codes": "^1.4.0",
"node-fetch": "^2.6.1",
"serverless": "^2.18.0",
"winston": "^3.2.1"
}
}