-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.39 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "dynamo-facade-v3",
"version": "1.1.0",
"main": "dist/index.min.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": {
"name": "Diogo Kollross",
"email": "[email protected]"
},
"homepage": "https://diogoko.github.io/dynamo-facade-v2",
"license": "MIT",
"private": false,
"repository": {
"url": "https://github.com/diogoko/dynamo-facade-v2.git",
"type": "git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"start": "rollup -c rollup.config.js -w",
"build": "rm -rf dist && rollup -c rollup.config.js",
"build:docs": "rm -rf docs && typedoc",
"lint": "eslint --max-warnings 0 './**/*.ts'",
"test": "jest --coverage",
"test:ci": "cross-env CI=1 jest --coverage",
"prepare": "husky install",
"qa": "yarn build && yarn lint && yarn test:ci"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.234.0",
"@aws-sdk/lib-dynamodb": "^3.234.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.1",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"cross-env": "^7.0.3",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rollup": "^2.77.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.7",
"tslib": "^2.4.0",
"typedoc": "^0.23.9",
"typescript": "^4.7.4"
},
"lint-staged": {
"src/**/*.ts": [
"./node_modules/.bin/prettier --write",
"./node_modules/.bin/eslint"
]
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.234.0",
"@aws-sdk/lib-dynamodb": "^3.234.0"
}
}