-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
106 lines (106 loc) · 2.93 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "tslint-config-prettier",
"version": "0.0.0-development",
"description": "Do you wanna use tslint and prettier without conflicts? tslint-config-prettier disables all conflicting rules that may cause such problems. Prettier takes care of formatting and tslint the rest.",
"keywords": [
"lint",
"tslint",
"ts-lint",
"prettier",
"config",
"typescript"
],
"files": [
"bin/check.js",
"lib/index.json",
"lib/checker.js"
],
"main": "lib/index.json",
"bin": {
"tslint-config-prettier-check": "bin/check.js"
},
"author": "Alex Jover Morales <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/prettier/tslint-config-prettier.git"
},
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"prepublish": "yarn build-tools && yarn generate-config && yarn build-checker",
"lint": "tslint 'tools/**/*.ts'",
"test": "yarn clean && jest --no-cache",
"clean": "rimraf ./node_modules/vrsource-tslint-rules/rules/*.ts",
"build-tools": "tsc",
"build-checker": "tsc -p ./tsconfig.checker.json",
"generate-config": "node ./build/generate.js",
"semantic-release": "semantic-release",
"commit": "git-cz",
"prepush": "yarn test && yarn lint",
"commitmsg": "validate-commit-msg"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
}
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"testMatch": [
"**/src/**/test.{ts,tsx}",
"**/tools/*.test.ts"
],
"transform": {
"/src/.+\\.tsx?$": "<rootDir>/build/transform.js",
"/tools/.+\\.ts$": "ts-jest/preprocessor"
},
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 95,
"lines": 95,
"statements": 95
}
}
},
"devDependencies": {
"@types/jest": "^23.1.2",
"@types/make-dir": "^1.0.1",
"@types/node": "^13.13.4",
"@types/prettier": "^2.0.0",
"codelyzer": "6.0.2",
"commitizen": "^3.0.0",
"cz-conventional-changelog": "^2.0.0",
"husky": "^1.0.0",
"jest": "^24.1.0",
"lodash": "^4.17.4",
"make-dir": "^1.0.0",
"prettier": "2.3.0",
"rimraf": "^3.0.2",
"semantic-release": "^15.0.0",
"ts-jest": "^24.0.0",
"tslint": "6.1.3",
"tslint-consistent-codestyle": "1.16.0",
"tslint-divid": "1.3.0",
"tslint-eslint-rules": "5.4.0",
"tslint-immutable": "6.0.1",
"tslint-microsoft-contrib": "6.2.0",
"tslint-misc-rules": "3.6.0",
"tslint-react": "5.0.0",
"typescript": "4.3.2",
"validate-commit-msg": "^2.10.1",
"vrsource-tslint-rules": "6.0.0"
}
}