-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.83 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.83 KB
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
{
"name": "farquest",
"version": "0.0.1",
"description": "A lambda to kick off AWS Fargate Tasks from an SQS Event Source, return their response and handle task lifecycle.",
"main": "src/index.js",
"scripts": {
"build": "echo \"no build configured\" && exit 1",
"commit": "git-cz",
"start": "lambda-local -v 3 --inspect=0.0.0.0:9229 -l src/index.js -e tests/event.json -t 300 -r us-east-1",
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "jsdoc -c jsdoc.json src/**/*.js src/*.js",
"docs:watch": "nodemon --exec \"jsdoc -c jsdoc.json src/**/*.js src/*.js && http-server -p 2222 -c-1 docs/\" -w src/ src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Emethium/farquest.git"
},
"author": "ZRP <zrp@zrp.com.br>",
"license": "UNLICENSED",
"private": true,
"contributors": [
"Nikolas Serafini <nikolas.serafini@zrp.com.br>",
"Pedro Gryzinsky <pedro.gryzinsky@zrp.com.br>"
],
"bugs": {
"url": "https://github.com/Emethium/farquest/issues"
},
"homepage": "https://github.com/Emethium/farquest#readme",
"dependencies": {
"async-exit-hook": "^2.0.1",
"aws-sdk": "^2.514.0",
"request": "^2.88.0",
"requestretry": "^4.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"docdash": "^1.1.1",
"dotenv": "^8.1.0",
"eslint": "^6.2.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"http-server": "^0.11.1",
"jsdoc": "^3.6.3",
"lambda-local": "^1.6.3",
"nodemon": "^1.19.1",
"prettier": "^1.18.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}