-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.86 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
{
"name": "@os-gurus/dynamodel",
"version": "2.0.1",
"description": "Generate typed methods for DynamoDB models. With special sauce for nested props.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "src/index.ts",
"engines": {
"node": ">=12.0.0"
},
"files": [
"dist"
],
"author": "Tim Kinnane <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/OS-Gurus/dynamodel.git"
},
"private": false,
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.13",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"aws-sdk": "^2.963.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.0.6",
"jest-dynalite": "^3.4.1",
"prettier": "^2.3.2",
"semantic-release": "^17.4.4",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"ts-toolbelt": "^9.6.0",
"typescript": "^4.3.5"
},
"dependencies": {},
"peerDependencies": {
"aws-sdk": "^2.956.0"
},
"scripts": {
"test": "jest",
"test:update": "jest --no-cache -u",
"test:watch": "jest --watch",
"lint": "eslint src",
"build": "tsc -p .",
"dev": "yarn build --watch",
"actions": "act -s GITHUB_TOKEN"
},
"release": {
"branches": [
"trunk"
],
"plugins": [
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}