-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.56 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
{
"name": "dynamodb-datamodel",
"version": "0.2.7",
"description": "DynamoDB single table design based model",
"keywords": [
"DynamoDB",
"Single-Table-Model",
"aws",
"nosql",
"serverless"
],
"author": "Jason Christensen",
"license": "MIT",
"homepage": "https://github.com/JasonCraftsCode/dynamodb-datamodel",
"repository": {
"type": "git",
"url": "git+https://github.com/JasonCraftsCode/dynamodb-datamodel.git"
},
"bugs": {
"url": "https://github.com/JasonCraftsCode/dynamodb-datamodel/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"engines": {
"node": ">=8.0.0"
},
"sideEffects": false,
"source": "src/index.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"scripts": {
"ncu": "ncu --dep prod,dev",
"ncu:update": "ncu --dep prod,dev -u && npm install",
"build": "tsc -P ./tsconfig.src.json",
"build:esm": "tsc -P ./tsconfig.src.esm.json",
"build:check": "tsc --noEmit -P ./tsconfig.src.json",
"docs": "typedoc",
"api": "api-extractor run",
"api:update": "npm run build && api-extractor run --local --verbose",
"docs:quality": "inchjs list --all",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint .",
"test": "jest --no-cache --rootDir ./",
"test:coverage": "jest --no-cache --rootDir ./ --coverage",
"pr": "npm run lint && npm run test:coverage && npm run build && npm run build:esm && npm run api && npm run docs",
"prepare": "npm run build && npm run build:esm",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src && npm run docs && git add -A docs",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.22.2",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"aws-sdk": "^2.1116.0",
"dependency-cruiser": "^11.6.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-jsdoc": "^39.2.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.16",
"jest": "^27.5.1",
"npm-check-updates": "^12.5.9",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.3"
},
"peerDependencies": {
"aws-sdk": "^2.880.0"
}
}