forked from cartant/rxjs-tslint-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.95 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
{
"author": "Nicholas Jamieson <[email protected]>",
"bugs": {
"url": "https://github.com/cartant/rxjs-tslint-rules/issues"
},
"dependencies": {
"@phenomnomnominal/tsquery": "^4.0.0",
"decamelize": "^3.0.0",
"resolve": "^1.4.0",
"semver": "^7.0.0",
"tslib": "^1.8.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": "^7.0.0",
"@types/node": "^13.0.0",
"@types/resolve": "^1.14.0",
"@types/semver": "^7.0.0",
"chai": "^4.0.0",
"husky": "^4.0.0",
"lint-staged": "^10.0.9",
"mocha": "^7.0.0",
"prettier": "~1.19.0",
"rimraf": "^3.0.0",
"rxjs": "^6.0.0",
"tslint": "^6.0.0",
"tslint-etc": "^1.5.1",
"typescript": "~3.8.2"
},
"homepage": "https://github.com/cartant/rxjs-tslint-rules",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"lint",
"rules",
"rxjs",
"tslint"
],
"license": "MIT",
"lint-staged": {
"*.{js,ts}": "prettier --write"
},
"main": "./index.js",
"name": "rxjs-tslint-rules",
"optionalDependencies": {},
"peerDependencies": {
"rxjs": "^5.0.0 || ^6.0.0",
"tslint": "^5.0.0 || ^6.0.0",
"typescript": "^2.3.0 || ^3.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\"",
"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",
"test:build": "yarn run test:clean && tsc -p tsconfig.json",
"test:clean": "rimraf build",
"test:debug": "tslint --test \"./test/v6/fixtures/no-unsafe-subject-next/**/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\""
},
"version": "4.31.0"
}