-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.74 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
{
"name": "@krema/angular-eslint-stylelint-builder",
"private": true,
"description": "Angular CLI builder for ESLint and stylelint",
"author": "André Kremser",
"license": "MIT",
"watch": {
"build": {
"patterns": [
"lib"
],
"extensions": "ts"
}
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "npm run clean && tsc -p tsconfig.lib.json && npm run copy:root && npm run copy:schema",
"test": "jest --ci --coverage --no-colors",
"copy:schema": "cp lib/builder/src/schema.json out/dist",
"copy:root": "cp lib/builder/package.json lib/builder/builders.json LICENSE README.md out",
"lint": "eslint ./lib/",
"lint:fix": "eslint ./lib/ --fix",
"format:check": "prettier --check ./lib/",
"format:fix": "prettier --write ./lib/",
"clean": "rm -rf out",
"watch": "npm-watch"
},
"engines": {
"node": ">=14.0.0",
"npm": "^6.11.0 || ^7.5.6",
"yarn": ">= 1.13.0"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1502.1",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.5.0",
"jest-extended": "^3.2.4",
"jest-github-actions-reporter": "^1.0.3",
"jest-junit": "^16.0.0",
"npm-watch": "^0.11.0",
"prettier": "^2.8.4",
"semantic-release": "^20.1.1",
"stylelint": "^15.2.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}