-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
87 lines (87 loc) · 3.13 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
{
"author": "Nicholas Jamieson <[email protected]>",
"bugs": {
"url": "https://github.com/cartant/rxjs-tslint-rules/issues"
},
"dependencies": {
"@phenomnomnominal/tsquery": "^4.0.0",
"decamelize": "^4.0.0",
"resolve": "^1.4.0",
"rxjs-report-usage": "^1.0.4",
"semver": "^7.0.0",
"tslib": "^2.0.0",
"tsutils": "^3.0.0",
"tsutils-etc": "^1.2.2"
},
"description": "TSLint rules for RxJS",
"devDependencies": {
"@cartant/tslint-config": "^2.0.0",
"@cartant/tslint-config-etc": "^2.0.0",
"@types/chai": "^4.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.0.0",
"@types/resolve": "^1.14.0",
"@types/semver": "^7.0.0",
"chai": "^4.0.0",
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"mocha": "^9.0.0",
"prettier": "~2.3.0",
"rimraf": "^3.0.0",
"rxjs": "^6.0.0",
"tslint": "^6.0.0",
"tslint-etc": "^1.5.1",
"typescript": "~4.4.2"
},
"files": [
"dist",
"index.js"
],
"homepage": "https://github.com/cartant/rxjs-tslint-rules",
"keywords": [
"lint",
"rules",
"rxjs",
"tslint"
],
"license": "MIT",
"lint-staged": {
"*.{js,ts}": "prettier --write"
},
"main": "./index.js",
"name": "rxjs-tslint-rules",
"optionalDependencies": {},
"peerDependencies": {
"tslint": "^5.0.0 || ^6.0.0",
"typescript": "^2.3.0 || ^3.0.0 || ^4.0.0"
},
"private": false,
"publishConfig": {
"tag": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/cartant/rxjs-tslint-rules.git"
},
"scripts": {
"dist": "yarn run dist:build",
"dist:build": "yarn run dist:clean && tsc -p tsconfig-dist.json",
"dist:clean": "rimraf dist",
"lint": "tslint --project tsconfig.json \"source/**/*.ts\"",
"prepare": "husky install",
"prepublishOnly": "yarn run test && yarn run dist",
"prettier": "prettier --write \"./source/**/*.{js,json,ts}\"",
"prettier:ci": "prettier --check \"./source/**/*.{js,json,ts}\"",
"test": "yarn run lint && yarn run test:build && yarn run test:mocha && yarn run test:tslint-v5 && yarn run test:tslint-v6 && yarn run test:tslint-v6-compat && yarn run test:tslint-v7",
"test:build": "yarn run test:clean && tsc -p tsconfig.json",
"test:clean": "rimraf build",
"test:debug": "tslint --test \"./test/v6/fixtures/no-implicit-any-catch/**/tslint.json\"",
"test:issues": "yarn run test:clean && tsc -p tsconfig.json && tslint --test \"./test/v6/fixtures/issues/**/tslint.json\"",
"test:mocha": "mocha \"./build/**/*-spec.js\"",
"test:tslint-v5": "yarn --cwd ./test/v5 install && yarn --cwd ./test/v5 upgrade && tslint --test \"./test/v5/fixtures/**/tslint.json\"",
"test:tslint-v6": "yarn --cwd ./test/v6 install && yarn --cwd ./test/v6 upgrade && tslint --test \"./test/v6/fixtures/**/tslint.json\"",
"test:tslint-v6-compat": "yarn --cwd ./test/v6-compat install && yarn --cwd ./test/v6-compat upgrade && tslint --test \"./test/v6-compat/fixtures/**/tslint.json\"",
"test:tslint-v7": "yarn --cwd ./test/v7 install && yarn --cwd ./test/v7 upgrade && tslint --test \"./test/v7/fixtures/**/tslint.json\""
},
"version": "4.34.8"
}