-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.38 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
54
55
56
{
"name": "moleculer-db-adapter-dynamodb",
"version": "2.0.0",
"description": "DynamoDB adapter for Moleculer DB service",
"main": "index.js",
"scripts": {
"dev": "nodemon examples/index.js",
"watch:test": "jest --watch",
"pretest": "npm run lint",
"test": "jest --coverage",
"posttest": "npm run format",
"lint": "eslint . --cache --fix",
"coverall": "cat ./coverage/lcov.info | coveralls",
"format": "prettier --loglevel warn --write \"**/*.{js,css,md}\"",
"prepare": "husky install"
},
"keywords": [
"microservice",
"moleculer"
],
"peerDependencies": {
"moleculer": "^0.12.0 || ^0.13.0 || ^0.14.0",
"aws-sdk": "^2.931.0x"
},
"devDependencies": {
"aws-sdk": "^2.931.0",
"coveralls": "^3.1.0",
"dynamodb": "^1.3.0",
"eslint": "^7.28.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"jest-cli": "^27.0.4",
"lint-staged": "^11.0.0",
"moleculer": "^0.14.13",
"nodemon": "^2.0.7",
"prettier": "^2.3.1"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">=10"
},
"dependencies": {
"lodash": "^4.17.21"
},
"repository": "katsanva/moleculer-db-adapter-dynamodb",
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*.{ts,js,css,md}": "prettier --write"
}
}