-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.09 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.09 KB
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
{
"name": "tslint-no-circular-imports",
"version": "0.6.2",
"description": "TSLint plugin to detect and warn about circular imports",
"main": "tslint-no-circular-imports.json",
"scripts": {
"build": "npm run clean && npm run lint && npm run build-sources",
"build-sources": "tsc -p tsconfig.json",
"build-tests": "tsc -p tsconfig.test.json",
"clean": "rm -f noCircularImportsRule.js.map noCircularImportsRule.d.ts",
"lint": "tslint -p . ./noCircularImportsRule.ts",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "npm run build-tests && node test/test.js",
"watch": "tsc -p tsconfig.json -w & tsc -p tsconfig.test.json -w"
},
"author": "Boris Cherny <boris@performancejs.com> (http://performancejs.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bcherny/tslint-no-circular-imports.git"
},
"peerDependencies": {
"tslint": ">=5.0.0",
"typescript": ">=2.1.0"
},
"devDependencies": {
"@types/node": "^11.10.4",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
}
}