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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
| {
| "_args": [
| [
| "tslint@5.16.0",
| "E:\\ximenzi\\wms\\old\\api"
| ]
| ],
| "_development": true,
| "_from": "tslint@5.16.0",
| "_id": "tslint@5.16.0",
| "_inBundle": false,
| "_integrity": "sha512-UxG2yNxJ5pgGwmMzPMYh/CCnCnh0HfPgtlVRDs1ykZklufFBL1ZoTlWFRz2NQjcoEiDoRp+JyT0lhBbbH/obyA==",
| "_location": "/tslint",
| "_phantomChildren": {},
| "_requested": {
| "type": "version",
| "registry": true,
| "raw": "tslint@5.16.0",
| "name": "tslint",
| "escapedName": "tslint",
| "rawSpec": "5.16.0",
| "saveSpec": null,
| "fetchSpec": "5.16.0"
| },
| "_requiredBy": [
| "#DEV:/"
| ],
| "_resolved": "https://registry.npmjs.org/tslint/-/tslint-5.16.0.tgz",
| "_spec": "5.16.0",
| "_where": "E:\\ximenzi\\wms\\old\\api",
| "bin": {
| "tslint": "./bin/tslint"
| },
| "bugs": {
| "url": "https://github.com/palantir/tslint/issues"
| },
| "dependencies": {
| "@babel/code-frame": "^7.0.0",
| "builtin-modules": "^1.1.1",
| "chalk": "^2.3.0",
| "commander": "^2.12.1",
| "diff": "^3.2.0",
| "glob": "^7.1.1",
| "js-yaml": "^3.13.0",
| "minimatch": "^3.0.4",
| "mkdirp": "^0.5.1",
| "resolve": "^1.3.2",
| "semver": "^5.3.0",
| "tslib": "^1.8.0",
| "tsutils": "^2.29.0"
| },
| "description": "An extensible static analysis linter for the TypeScript language",
| "devDependencies": {
| "@types/babel__code-frame": "^7.0.1",
| "@types/chai": "^3.5.0",
| "@types/diff": "^3.2.0",
| "@types/glob": "^5.0.30",
| "@types/js-yaml": "^3.5.31",
| "@types/minimatch": "^2.0.29",
| "@types/mkdirp": "^0.5.2",
| "@types/mocha": "^2.2.35",
| "@types/node": "^7.0.29",
| "@types/resolve": "^0.0.4",
| "@types/rimraf": "^2.0.2",
| "@types/semver": "^5.3.30",
| "chai": "^3.5.0",
| "github": "^8.2.1",
| "husky": "^0.14.3",
| "json-stringify-pretty-compact": "^1.2.0",
| "mocha": "^3.2.0",
| "npm-run-all": "^4.0.2",
| "nyc": "^13.3.0",
| "prettier": "~1.16.4",
| "rimraf": "^2.5.4",
| "ts-node": "^3.3.0",
| "tslint": "~5.13.0",
| "tslint-config-prettier": "^1.18.0",
| "tslint-plugin-prettier": "^2.0.1",
| "tslint-test-config-non-relative": "file:test/external/tslint-test-config-non-relative",
| "typescript": "~3.1.6",
| "yarn-deduplicate": "^1.1.1"
| },
| "engines": {
| "node": ">=4.8.0"
| },
| "homepage": "https://palantir.github.io/tslint",
| "keywords": [
| "cli",
| "typescript",
| "linter"
| ],
| "license": "Apache-2.0",
| "main": "./lib/index.js",
| "name": "tslint",
| "peerDependencies": {
| "typescript": ">=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev"
| },
| "repository": {
| "type": "git",
| "url": "git+https://github.com/palantir/tslint.git"
| },
| "scripts": {
| "clean": "npm-run-all -p clean:core clean:test",
| "clean:core": "rimraf lib",
| "clean:test": "rimraf build && rimraf test/config/node_modules",
| "compile": "npm-run-all -p compile:core compile:test -s compile:scripts",
| "compile:core": "tsc -p src",
| "compile:scripts": "tsc -p scripts",
| "compile:test": "tsc -p test",
| "coverage": "rimraf coverage .nyc_output && nyc npm test",
| "docs": "node scripts/buildDocs.js",
| "lint": "npm-run-all -p lint:from-installed lint:from-bin",
| "lint-fix": "yarn lint:from-installed --fix",
| "lint:from-bin": "node bin/tslint --project test/tsconfig.json --format codeFrame",
| "lint:from-installed": "tslint --project test/tsconfig.json --format codeFrame",
| "publish:local": "./scripts/npmPublish.sh",
| "test": "npm-run-all test:pre -p test:mocha test:rules",
| "test:mocha": "mocha --reporter spec --colors \"build/test/**/*Tests.js\"",
| "test:pre": "cd ./test/config && npm install --no-save",
| "test:rules": "node ./build/test/ruleTestRunner.js",
| "verify": "npm-run-all clean compile lint test docs"
| },
| "typings": "./lib/index.d.ts",
| "version": "5.16.0"
| }
|
|