forked from marvinpinto/actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.07 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
{
"name": "github-actions",
"version": "0.0.0",
"author": "Marvin Pinto",
"license": "MIT",
"private": true,
"workspaces": [
"packages/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/marvinpinto/actions.git"
},
"config": {
"eslintPaths": ".*.js *.js",
"prettierPaths": "*.{json,md,yaml,yml} .github/**/*.{json,md,yaml,yml} !package.json !lerna.json"
},
"scripts": {
"test": "yarn jest --env=node --colors",
"build": "lerna run build --stream",
"clean": "lerna run clean --stream && rm -rf node_modules yarn-error.log",
"reinstall": "yarn clean; yarn install --frozen-lockfile",
"lint": "lerna run lint --stream && yarn run lint:eslint && yarn run lint:prettier && yarn run lint:commits",
"lint:eslint": "eslint --max-warnings=0 $npm_package_config_eslintPaths",
"lint:prettier": "prettier --list-different $npm_package_config_prettierPaths",
"lint:commits": "commitlint --to .",
"lintfix": "lerna run lintfix --stream && yarn run lintfix:eslint && yarn run lintfix:prettier",
"lintfix:eslint": "eslint --fix $npm_package_config_eslintPaths",
"lintfix:prettier": "prettier --write $npm_package_config_prettierPaths",
"release": "lerna version"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/jest": "^26.0.22",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-jest": "^26.6.3",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"lerna": "^4.0.0",
"prettier": "^2.1.2",
"typescript": "^4.2.3"
},
"eslintIgnore": [
"!.*.js"
],
"dependencies": {}
}