-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.04 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
{
"name": "@serverless-seoul/dynamorm-stream",
"version": "2.0.0",
"description": "DynamoDB Stream Framework",
"main": "./dst/index.js",
"typings": "./dst/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/serverless-seoul/dynamorm-stream.git"
},
"keywords": [
"DynamoDB",
"AWS",
"Typescript",
"ORM",
"Serverless"
],
"bugs": {
"url": "https://github.com/serverless-seoul/dynamorm-stream/issues"
},
"homepage": "https://github.com/serverless-seoul/dynamorm-stream",
"scripts": {
"clean": "rm -rf dst",
"prebuild": "npm run clean",
"build": "tsc",
"pretest": "npm run build -- -p tsconfig.test.json",
"test": "AWS_REGION=us-east-1 AWS_ACCESS_KEY_ID=mock AWS_SECRET_ACCESS_KEY=mock mocha -t 20000 dst/**/__test__/**/*.js",
"test:ci": "npm run test -- --forbid-only",
"prepublishOnly": "npm run build",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"author": "@serverless-seoul",
"engines": {
"node": "^12.10.0"
},
"license": "ISC",
"devDependencies": {
"@catchfashion/commitlint-preset": "^1.0.3",
"@catchfashion/semantic-release-config": "^1.0.2",
"@catchfashion/tslint-preset": "^1.0.2",
"@serverless-seoul/dynamorm": "^2.11.0",
"@types/chai": "^4.2.14",
"@types/debug": "^4.1.5",
"@types/faker": "^5.1.6",
"@types/mocha": "^8.2.0",
"@types/node": "^12.19.15",
"aws-sdk": "^2.835.0",
"chai": "^4.2.0",
"faker": "^5.3.1",
"mocha": "^8.2.1",
"semantic-release": "^17.3.7",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"peerDependencies": {
"@serverless-seoul/dynamorm": "^2.0.0",
"aws-sdk": "^2.300.0",
"@types/node": ">= 12.10.0"
},
"dependencies": {
"@types/aws-lambda": "^8.10.71",
"debug": "^4.3.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@catchfashion/commitlint-preset"
]
}
}