UNPKG

3.05 kBJSONView Raw
1{
2 "name": "tslint-config-prettier",
3 "version": "1.15.0",
4 "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.",
5 "keywords": [
6 "lint",
7 "tslint",
8 "ts-lint",
9 "prettier",
10 "config",
11 "typescript"
12 ],
13 "files": [
14 "bin/check.js",
15 "lib/index.json",
16 "lib/checker.js"
17 ],
18 "main": "lib/index.json",
19 "bin": {
20 "tslint-config-prettier-check": "bin/check.js"
21 },
22 "author": "Alex Jover Morales <alexjovermorales@gmail.com>",
23 "repository": {
24 "type": "git",
25 "url": "https://github.com/alexjoverm/tslint-config-prettier.git"
26 },
27 "license": "MIT",
28 "engines": {
29 "node": ">=4.0.0"
30 },
31 "scripts": {
32 "prepublish": "npm run build-tools && npm run generate-config && npm run build-checker",
33 "lint": "tslint 'tools/**/*.ts'",
34 "test": "npm run clean && jest --no-cache",
35 "clean": "rimraf ./node_modules/vrsource-tslint-rules/rules/*.ts",
36 "build-tools": "tsc",
37 "build-checker": "tsc -p ./tsconfig.checker.json",
38 "generate-config": "node ./build/generate.js",
39 "semantic-release": "semantic-release",
40 "commit": "git-cz",
41 "prepush": "npm run test && npm run lint",
42 "commitmsg": "validate-commit-msg"
43 },
44 "config": {
45 "commitizen": {
46 "path": "node_modules/cz-conventional-changelog"
47 },
48 "validate-commit-msg": {
49 "types": "conventional-commit-types",
50 "helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
51 }
52 },
53 "jest": {
54 "testEnvironment": "node",
55 "moduleFileExtensions": [
56 "ts",
57 "tsx",
58 "js",
59 "json"
60 ],
61 "testMatch": [
62 "**/src/**/test.{ts,tsx}",
63 "**/tools/*.test.ts"
64 ],
65 "transform": {
66 "/src/.+\\.tsx?$": "<rootDir>/build/transform.js",
67 "/tools/.+\\.ts$": "ts-jest/preprocessor"
68 },
69 "coverageThreshold": {
70 "global": {
71 "branches": 95,
72 "functions": 95,
73 "lines": 95,
74 "statements": 95
75 }
76 }
77 },
78 "devDependencies": {
79 "@types/jest": "^23.1.2",
80 "@types/make-dir": "^1.0.1",
81 "@types/node": "^10.0.3",
82 "@types/prettier": "^1.10.0",
83 "codelyzer": "4.1.0",
84 "commitizen": "^2.9.5",
85 "cz-conventional-changelog": "^2.0.0",
86 "husky": "^0.14.3",
87 "jest": "^23.2.0",
88 "lodash": "^4.17.4",
89 "make-dir": "^1.0.0",
90 "prettier": "1.14.2",
91 "rimraf": "^2.6.1",
92 "semantic-release": "^15.0.0",
93 "ts-jest": "^23.0.0",
94 "tslint": "5.9.1",
95 "tslint-consistent-codestyle": "1.13.3",
96 "tslint-divid": "1.3.0",
97 "tslint-eslint-rules": "5.4.0",
98 "tslint-immutable": "4.6.0",
99 "tslint-microsoft-contrib": "5.2.0",
100 "tslint-misc-rules": "3.5.0",
101 "tslint-plugin-ikatyang": "1.1.1",
102 "tslint-react": "3.5.1",
103 "typescript": "2.6.2",
104 "validate-commit-msg": "^2.10.1",
105 "vrsource-tslint-rules": "5.8.2"
106 }
107}