forked from cartant/rxjs-tslint-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.51 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
{
"author": "Nicholas Jamieson <[email protected]>",
"bugs": {
"url": "https://github.com/cartant/rxjs-tslint-rules/issues"
},
"dependencies": {
"resolve": "^1.4.0",
"tslib": "^1.8.0"
},
"description": "TSLint rules for RxJS",
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.0",
"@types/resolve": "^0.0.4",
"@types/semver": "^5.4.0",
"chai": "^4.0.0",
"mocha": "^4.0.0",
"rimraf": "^2.6.1",
"rxjs": "^5.4.0",
"semver": "^5.4.0",
"tslint": "^5.1.0",
"typescript": "~2.6.1"
},
"homepage": "https://github.com/cartant/rxjs-tslint-rules",
"keywords": [
"lint",
"rules",
"rxjs",
"tslint"
],
"license": "MIT",
"main": "./index.js",
"name": "rxjs-tslint-rules",
"optionalDependencies": {},
"peerDependencies": {
"rxjs": "^5.0.0",
"tslint": "^5.0.0",
"typescript": "^2.3.0"
},
"private": false,
"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",
"test": "yarn run lint && yarn run test:build && mocha build/fixtures-spec.js",
"test:build": "yarn run test:clean && tsc -p tsconfig.json",
"test:clean": "rimraf build"
},
"version": "3.3.0"
}