-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.85 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
{
"name": "@rimac-technology/semantic-release-s3",
"version": "2.4.0",
"description": "Semantic-release plugin to push files and folders to AWS S3 bucket",
"keywords": [
"release",
"semantic-release",
"s3"
],
"repository": "[email protected]:RimacTechnology/semantic-release-s3.git",
"license": "MIT",
"author": "Rimac Technology d.o.o.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"cm": "cz",
"postinstall": "husky install",
"lint": "yarn lint:eslint & yarn lint:prettier & yarn lint:package-json & yarn lint:cspell",
"lint:cspell": "cspell --no-progress --no-summary '**'",
"lint:eslint": "eslint './src' --quiet --cache --cache-strategy content --cache-location '.eslintcache/'",
"lint:package-json": "npmPkgJsonLint --configFile ./.packagerc.js .",
"lint:prettier": "prettier --loglevel warn --no-editorconfig --no-error-on-unmatched-pattern --check \"./**/*{yaml,yml,json,md}\"",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"release": "semantic-release"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
500
]
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"aggregate-error": "^3.1.0",
"aws-sdk": "^2.1325.0",
"globby": "^11.1.0",
"lodash.template": "^4.5.0",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@rimac-technology/style-guide": "^2.0.3",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/lodash.template": "^4.5.1",
"@types/mime-types": "^2.1.1",
"@types/semantic-release": "^20.0.1",
"commitizen": "^4.3.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cspell": "^6.27.0",
"eslint": "^8.35.0",
"husky": "^8.0.3",
"npm-package-json-lint": "^6.4.0",
"pinst": "^3.0.0",
"prettier": "^2.8.4",
"semantic-release": "^20.1.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"semantic-release": ">=19.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14",
"yarn": ">=1"
},
"publishConfig": {
"access": "public"
}
}