-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 2.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@schedulino/aws-dynamodb-adapter",
"version": "0.0.0-semantically-released",
"description": "The light wrapper around aws-sdk dynamodb.",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"author": {
"email": "[email protected]",
"name": "Schedulino Team",
"url": "https://schedulino.com"
},
"maintainers": [
{
"name": "Schedulino Team",
"email": "[email protected]",
"url": "https://schedulino.com"
}
],
"keywords": [
"aws",
"lambda",
"dynamodb"
],
"repository": {
"type": "git",
"url": "https://github.com/schedulino/aws-dynamodb-adapter.git"
},
"bugs": {
"url": "https://github.com/schedulino/aws-dynamodb-adapter/issues"
},
"homepage": "https://github.com/schedulino/aws-dynamodb-adapter#readme",
"scripts": {
"cm": "git-cz",
"prebuild": "rimraf dist",
"build": "tsc --declaration",
"lint": "tslint -t stylish --project tsconfig.json",
"lint:fix": "npm run lint -- --fix",
"check": "npm run lint && npm run prettier:check",
"prettier:base-files": "prettier --single-quote --trailing-comma es5 '{src,test}/**/*.ts'",
"prettier:check": "npm run prettier:base-files -- -l -v",
"prettier:fix": "npm run prettier:base-files -- --write",
"test": "jest --config jestconfig.json",
"test:coverage": "npm run test -- --coverage",
"test:watch": "npm run test:coverage -- --watch",
"test:ci": "npm run test:coverage -- --no-cache --ci --colors",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook",
"pre-push": "npm run test:ci",
"post-merge": "npm install"
}
},
"lint-staged": {
"*.ts": [
"npm run lint:fix",
"git add"
],
"*.{ts,md,json}": [
"npm run prettier:fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"aws-sdk": "2.610.0",
"@hapi/boom": "7.4.3",
"lambda-log": "2.3.1",
"uuid": "3.4.0"
},
"devDependencies": {
"@types/aws-lambda": "8.10.45",
"@types/hapi__boom": "7.4.1",
"@types/jest": "24.0.25",
"@types/lambda-log": "2.2.0",
"@types/uuid": "3.4.7",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.1.0",
"husky": "3.1.0",
"jest": "24.9.0",
"lint-staged": "9.5.0",
"prettier": "1.19.1",
"rimraf": "3.0.1",
"semantic-release": "15.14.0",
"ts-jest": "24.3.0",
"tslint": "5.20.1",
"tslint-config-airbnb": "5.11.2",
"tslint-config-prettier": "1.18.0",
"typescript": "3.8.3"
},
"files": [
"dist/src/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
}
}