-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.88 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.88 KB
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
{
"name": "@virtualidentity/quality-gate",
"version": "1.0.1",
"description": "Coding quality and standards for VI projects",
"author": "Virtual Identity AG",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/virtualidentityag/quality-gate.git"
},
"scripts": {
"start": "npm run lint && npm test",
"lint": "eslint \"./config/**/*.js\"",
"lint:fix": "eslint \"./config/**/*.js\" --fix",
"test": "npm run test:code && npm run test:style",
"test:code": "eslint \"./tests/pass.js\" \"./tests/pass.ts\" && eslint -c ./config/.eslintrc-jest.js \"./tests/test-*.js\" \"./tests/test-*.ts\"",
"test:style": "stylelint \"./tests/pass.css\" \"./tests/pass.scss\"",
"release": "np"
},
"dependencies": {
"@commitlint/cli": "^16.2",
"@commitlint/config-conventional": "^16.2",
"@typescript-eslint/eslint-plugin": "^5.12",
"@typescript-eslint/parser": "^5.12",
"eslint": "^8.9",
"eslint-config-airbnb-base": "^15.0",
"eslint-plugin-compat": "^4.0",
"eslint-plugin-filenames": "^1.3",
"eslint-plugin-import": "^2.25",
"eslint-plugin-jest": "^26.1",
"eslint-plugin-react": "^7.28",
"stylelint": "^14.5",
"stylelint-config-recommended-scss": "^5.0",
"stylelint-config-standard": "^25.0",
"stylelint-no-unsupported-browser-features": "^5.0",
"stylelint-scss": "^4.1"
},
"devDependencies": {
"@types/jest": "^27.4",
"cz-conventional-changelog": "^3.3",
"jest": "^27.5",
"lint-staged": "^12.3",
"np": "^7.6",
"typescript": "^4.5"
},
"peerDependencies": {
"typescript": ">=3.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*": "npm run lint:fix"
}
}