-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.82 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": "@lcgroup.tools/linters",
"version": "2.0.3",
"description": "LCGroup ESLint configs for Angular apps",
"license": "MIT",
"keywords": [
"eslint",
"eslintconfig",
"eslint-config"
],
"scripts": {
"cpx": "npm exec cpx",
"clean": "npm exec rimraf dist/",
"copy:assets": "npm run cpx -- linters/**/* dist && npm run cpx -- README.md dist && npm run cpx -- CHANGELOG.md dist && npm run cpx -- package.json dist",
"build": "npm run clean && npm run copy:assets",
"version": "npm exec -- conventional-changelog-cli -p angular -i CHANGELOG.md -s -r && npm run build",
"release": "npm exec -- np --contents ./dist",
"postrelease": "git add package.json package-lock.json CHANGELOG.md && git commit -m \"🎉 version released 🎉\" && git push",
"lint:styles": "npm exec -- stylelint \"**/*.scss\" \"**/*.less\" \"**/*.css\""
},
"np": {
"contents": "dist",
"yolo": true,
"anyBranch": true
},
"author": {
"name": "LCGroup"
},
"maintainers": [
{
"email": "[email protected]",
"name": "Sergey Romanchuk"
},
{
"email": "[email protected]",
"name": "Kirill Khrushchöv"
}
],
"repository": {
"type": "git",
"url": "https://github.com/LCGroupIT/lcgroup.tools-linters.git"
},
"homepage": "https://github.com/LCGroupIT/lcgroup.tools-linters#readme",
"devDependencies": {
"conventional-changelog-cli": "^2.0.21",
"conventional-github-releaser": "^3.1.4",
"np": "^6.2.3",
"rimraf": "^2.6.3"
},
"peerDependencies": {
"@angular-eslint/builder": ">=12.0.0 <13.0.0",
"@angular-eslint/eslint-plugin": ">=12.0.0 <13.0.0",
"@angular-eslint/eslint-plugin-template": ">=12.0.0 <13.0.0",
"@angular-eslint/schematics": ">=12.0.0 <13.0.0",
"@angular-eslint/template-parser": ">=12.0.0 <13.0.0",
"@typescript-eslint/eslint-plugin": ">=4.0.0 <5.0.0",
"@typescript-eslint/parser": ">=4.0.0 <5.0.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "~2.25.3",
"eslint-plugin-jsdoc": "~37.0.3",
"eslint-plugin-prefer-arrow": "~1.2.3",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~4.0.0",
"eslint-plugin-rxjs": "^3.3.7",
"postcss-less": "~5.0.0",
"postcss-scss": "~4.0.2",
"prettier": "~2.4.1",
"stylelint": "~14.1.0",
"stylelint-config-prettier": "~9.0.3",
"stylelint-config-standard": "~24.0.0",
"stylelint-order": "~5.0.0",
"stylelint-prettier": "~2.0.0",
"stylelint-scss": "~4.0.0"
},
"publishConfig": {
"access": "public"
}
}