-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
79 lines (79 loc) · 2.1 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
{
"name": "nrwl-nx-action",
"version": "3.1.0",
"description": "![Banner](.github/assets/banner-thin.png)",
"main": "lib/index.js",
"scripts": {
"build": "tsc --build ./tsconfig.build.json",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"prepackage": "npm run build",
"package": "ncc build -m",
"prepare": "husky install",
"test": "jest --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MansaGroup/nrwl-nx-action.git"
},
"keywords": [
"actions",
"nrwl",
"nx"
],
"author": "Jérémy Levilain <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MansaGroup/nrwl-nx-action/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
85
]
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{md,yml,html,css,scss,json}": "prettier --write"
},
"homepage": "https://github.com/MansaGroup/nrwl-nx-action#readme",
"devDependencies": {
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@octokit/webhooks": "10.7.0",
"@tsconfig/node16-strictest": "1.0.4",
"@types/jest": "29.4.0",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"@vercel/ncc": "0.36.1",
"eslint": "8.25.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-import-helpers": "1.3.1",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-sonarjs": "0.18.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-circus": "29.5.0",
"jest-extended": "3.2.4",
"jest-sonar": "0.2.15",
"lint-staged": "13.2.0",
"prettier": "2.8.4",
"ts-jest": "29.0.5",
"typescript": "4.9.5"
},
"dependencies": {
"@actions/core": "1.10.0",
"@actions/exec": "1.1.1",
"@actions/github": "5.1.1"
}
}