-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 1.96 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
{
"name": "@zooxsmart/lambda-util",
"version": "1.0.6",
"description": "Zoox Smart utility functions for aws lambda",
"main": "index.js",
"author": {
"name": "Leandro Silva",
"email": "[email protected]"
},
"contributors": [
{
"name": "Leandro Silva",
"email": "[email protected]"
}
],
"license": "MIT",
"homepage": "https://github.com/zooxsmart/lambda-util",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/zooxsmart/lambda-util.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"/src",
"/index.js"
],
"dependencies": {
"dateformat": "^3.0.3",
"debug": "^4.1.1",
"hal": "^1.2.0",
"http-status": "^1.3.2",
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"query-string": "^6.8.2",
"uuid": "^3.3.3",
"yn": "^3.1.1"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"aws-sdk": "^2.516.0",
"eslint": "^6.2.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.4",
"lint-staged": "^9.2.3"
},
"scripts": {
"lint": "eslint *.js src/*.js src/**/*.js",
"lint-fix": "eslint --fix *.js src/*.js src/**/*.js"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"release": {
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
],
"preset": "angular"
}
}