-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "ddbjs",
"version": "0.19.0",
"description": "A usable API for DynamoDB",
"main": "index.js",
"types": "index.d.ts",
"private": true,
"scripts": {
"build": "rm -rf build && tsc -p tsconfig.prod.json",
"test": "node --max-old-space-size=8192 node_modules/jest/bin/jest --config jestconfig.json",
"prepare": "npm run build",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MathisBullinger/ddbjs.git"
},
"keywords": [],
"author": "Mathis Bullinger",
"license": "ISC",
"bugs": {
"url": "https://github.com/MathisBullinger/ddbjs/issues"
},
"homepage": "https://github.com/MathisBullinger/ddbjs#readme",
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/local-dynamo": "^0.5.0",
"aws-sdk": "^2.809.0",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"jest": "^26.6.3",
"local-dynamo": "^0.6.0",
"prettier": "latest",
"ts-jest": "^26.4.4",
"typescript": "^4.7.3"
},
"dependencies": {
"froebel": "^0.17.0"
}
}