-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.07 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.07 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "financial-control-api",
"version": "1.0.0",
"description": "Financial Control API",
"repository": {
"type": "git",
"url": "git+https://github.com/fecaps/financial-control-api.git"
},
"author": "Fellipe Capelli <fellipecapelli@gmail.com>",
"license": "ISC",
"files": [
"src"
],
"engines": {
"node": ">=12.16.0"
},
"scripts": {
"postinstall": "link-module-alias",
"seed": "node src/seeders",
"test": "nyc --check-coverage --lines 80 --functions 80 --reporter=html --reporter=text mocha --recursive -S tests --exit --timeout 555555",
"testDebugger": "mocha --inspect-brk=9300 -S tests/*.test.js --exit --timeout 0",
"checkStyle": "./node_modules/eslint/bin/eslint.js ./",
"fixStyle": "./node_modules/eslint/bin/eslint.js ./ --fix",
"invokeFunction": "./node_modules/.bin/sls invoke local -f $FUNCTION_NAME"
},
"husky": {
"hooks": {
"pre-commit": "npm run checkStyle",
"pre-push": "npm test"
}
},
"nyc": {
"exclude": [
"coverage",
"tests"
]
},
"bugs": {
"url": "https://github.com/fecaps/financial-control-api/issues"
},
"homepage": "https://github.com/fecaps/financial-control-api#readme",
"_moduleAliases": {
"database": "src/database",
"handlers": "src/handlers",
"notifiers": "src/notifiers",
"streams": "src/streams",
"transformers": "src/transformers",
"config": "src/config.js"
},
"devDependencies": {
"aws-sdk": "^2.616.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"serverless": "^1.63.0",
"serverless-dotenv-plugin": "^2.3.2",
"serverless-iam-roles-per-function": "^2.0.2",
"serverless-pseudo-parameters": "^2.5.0"
},
"dependencies": {
"@hapi/joi": "^17.1.0",
"link-module-alias": "^1.2.0",
"lodash": "^4.17.15",
"uuid": "^7.0.1"
}
}