forked from ReactiveX/rxjs-tslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.99 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
{
"name": "rxjs-tslint",
"version": "0.1.4",
"description": "TSLint rule for RxJS",
"main": "index.js",
"bin": {
"rxjs-5-to-6-migrate": "./bin/rxjs-5-to-6-migrate"
},
"scripts": {
"docs": "ts-node build/buildDocs.ts",
"lint": "tslint -c tslint.json \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"release":
"npm run build && rimraf dist && tsc -p tsconfig-release.json && npm run copy:common && npm run prepare:package && cp -r bin rxjs-5-to-6-migrate.json dist",
"build": "rimraf dist && tsc && npm run lint && npm t",
"copy:common": "cp README.md dist",
"prepare:package": "cat package.json | ts-node build/package.ts > dist/package.json",
"test": "rimraf dist && tsc && mocha -R nyan dist/test --recursive",
"test:watch": "rimraf dist && tsc && BUILD_TYPE=dev && mocha -R nyan dist/test --watch --recursive",
"tscv": "tsc --version",
"tsc": "tsc",
"tsc:watch": "tsc --w"
},
"contributors": ["Minko Gechev <mgechev@gmail.com>"],
"repository": {
"type": "git",
"url": "git+https://github.com/reactivex/rxjs-tslint.git"
},
"keywords": ["rxjs", "lint", "tslint"],
"author": {
"name": "Minko Gechev",
"email": "mgechev@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/reactivex/rxjs-tslint/issues"
},
"homepage": "https://github.com/reactivex/rxjs-tslint#readme",
"devDependencies": {
"@types/chai": "^3.4.33",
"@types/chalk": "^2.2.0",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.41",
"@types/optimist": "0.0.29",
"@types/sprintf-js": "^1.1.0",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"js-yaml": "^3.8.4",
"json-stringify-pretty-compact": "^1.1.0",
"mocha": "3.0.2",
"rimraf": "^2.5.2",
"ts-node": "^3.3.0"
},
"peerDependencies": {
"tslint": "^5.0.0"
},
"dependencies": {
"tslint": "^5.9.1",
"typescript": "^2.8.3",
"chalk": "^2.4.0",
"optimist": "^0.6.1",
"tsutils": "^2.25.0"
}
}