-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.73 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@kdcio/ddb",
"version": "0.9.0",
"description": "Lightweight DynamoDB ODM",
"main": "dist/ddb.js",
"types": "types/index.d.ts",
"scripts": {
"bundle": "webpack",
"clean": "rm -fR dist",
"build": "npm run clean && npm run bundle",
"lint": "eslint src --ext .js",
"test": "jest",
"test:watch": "jest --watchAll",
"coverage": "jest --coverage"
},
"keywords": [
"kdc",
"software",
"dynamodb",
"odm",
"object",
"modeling"
],
"author": {
"name": "Ian Dela Cruz",
"email": "[email protected]",
"url": "https://www.kdcsoftware.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kdcio/ddb"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@types/jest": "^26.0.14",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.0",
"dynamodb-local": "0.0.31",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-sonarjs": "^0.5.0",
"husky": "^4.3.0",
"jest": "^26.6.0",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@babel/runtime": "^7.12.1",
"aws-sdk": "^2.774.0",
"debug": "^4.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint src --ext .js --fix",
"pretty-quick --staged"
]
}
}