-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
36 lines (36 loc) · 1022 Bytes
/
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
{
"name": "tslint-language-service",
"version": "1.0.0",
"description": "tslint - language services",
"main": "out/src/index.js",
"author": "Angelo ZERR",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/angelozerr/tslint-language-service.git"
},
"scripts": {
"prepublish": "node node_modules/typescript/lib/tsc",
"compile": "node node_modules/typescript/lib/tsc",
"devtest": "tsc && copyfiles out/src/index.js dev/node_modules/tslint-language-service",
"publish": "node ./scripts/git-tag.js",
"test": "tsc && tape out/test/**/*.spec.js",
"lint": "tslint src/index.ts"
},
"dependencies": {
"mock-require": "^2.0.2"
},
"devDependencies": {
"@types/node": "^7.0.8",
"@types/tape": "^4.2.29",
"@types/mock-require": "^2.0.0",
"tape": "^4.6.3",
"tslint": "^5.2.0",
"typescript": "^3.0.1",
"copyfiles": "^1.2.0"
},
"peerDependencies": {
"typescript": "^2.3.1 || ^3.0.0",
"tslint": ">= 4 < 6"
}
}