-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
70 lines (70 loc) · 1.94 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
{
"name": "dynamo-types",
"version": "2.10.1",
"description": "DynamoDB ORM for Typescript",
"main": "./dst/index.js",
"typings": "./dst/index.d.ts",
"scripts": {
"prebuild": "check-engine && rm -rf dst",
"build": "tsc",
"postbuild": "cd src && find . -name '*.json' -type f -exec cp {} ../dst/{} \\; && cd ..",
"pretest": "npm run build -- -p ./tsconfig.test.json",
"test": "env AWS_REGION=us-east-1 AWS_ACCESS_KEY_ID=mock AWS_SECRET_ACCESS_KEY=mock mocha -t 20000 dst/**/__test__/**/*.js",
"test:local": "env DYNAMO_TYPES_ENDPOINT=http://127.0.0.1:8000 npm test",
"prepublishOnly": "npm run build",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balmbees/dynamo-types.git"
},
"engines": {
"node": ">=8.10.0"
},
"author": "Kurt Lee",
"license": "ISC",
"bugs": {
"url": "https://github.com/balmbees/dynamo-types/issues"
},
"homepage": "https://github.com/balmbees/dynamo-types#readme",
"devDependencies": {
"@types/chai": "4.2.16",
"@types/faker": "4.1.12",
"@types/lodash": "4.14.168",
"@types/mocha": "7.0.2",
"@types/node": "8.10.66",
"@types/reflect-metadata": "0.1.0",
"@vingle/commitlint-preset": "1.0.3",
"@vingle/semantic-release-config": "1.0.5",
"@vingle/tslint-preset": "1.0.1",
"chai": "4.3.4",
"check-engine": "1.10.0",
"faker": "4.1.0",
"husky": "4.3.8",
"mocha": "7.2.0",
"tslint": "5.20.1",
"typescript": "3.9.9"
},
"dependencies": {
"amazon-dax-client": "^1.2.2",
"aws-sdk": "^2.538.0",
"aws-xray-sdk-core": "^2.3.6",
"lodash": "^4.17.15",
"reflect-metadata": "^0.1.13"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@vingle/commitlint-preset"
]
}
}