-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.52 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
{
"name": "automatic-releases",
"version": "1.0.0",
"private": true,
"description": "Generate automatic releases whenever changes land on master",
"main": "dist/index.js",
"license": "MIT",
"config": {
"eslintPaths": "src/**/*.ts __tests__/**/*.ts .*.js *.js",
"prettierPaths": "**/*.{json,md,yaml,yml} !package.json"
},
"scripts": {
"build": "webpack --config webpack.config.js --colors",
"clean": "rm -rf node_modules yarn-error.log dist",
"lint": "yarn run lint:eslint && yarn run lint:prettier",
"lint:eslint": "eslint --color --max-warnings=0 $npm_package_config_eslintPaths",
"lint:prettier": "prettier --color --list-different $npm_package_config_prettierPaths",
"lintfix": "yarn run lintfix:eslint && yarn run lintfix:prettier",
"lintfix:eslint": "eslint --color --fix $npm_package_config_eslintPaths",
"lintfix:prettier": "prettier --color --write $npm_package_config_prettierPaths"
},
"dependencies": {
"@actions/core": "^1.2.0",
"@actions/github": "^2.0.0",
"@octokit/rest": "^16.36.0",
"conventional-changelog-angular": "^5.0.6",
"conventional-commits-parser": "^3.0.8",
"globby": "^10.0.1",
"md5-file": "^4.0.0",
"semver": "^7.1.1",
"typescript": "^4.0.2"
},
"devDependencies": {
"express": "^4.17.1",
"nock": "^11.7.0",
"portfinder": "^1.0.25",
"terser-webpack-plugin": "^2.3.1",
"ts-loader": "^6.2.1",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"which": "^2.0.2"
},
"eslintIgnore": [
"!.*.js"
]
}