forked from microsoft/dtslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "dtslint",
"version": "2.0.5",
"description": "Runs tests on TypeScript definition files",
"files": [
"bin",
"dt.json",
"dtslint.json",
"dtslint-expect-only.json"
],
"main": "bin",
"bin": "./bin/index.js",
"contributors": [
"Nathan Shively-Sanders <[email protected]> (https://github.com/sandersn)",
"Andy Hanson <[email protected]> (https://github.com/andy-ms)",
"Dan Vanderkam <[email protected]> (https://github.com/danvk)"
],
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/dtslint.git"
},
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"lint": "tslint --project tsconfig.json --format stylish",
"test": "npm run build && node test/test.js",
"prepublishOnly": "npm run build && npm run test && npm run lint"
},
"dependencies": {
"definitelytyped-header-parser": "3.8.2",
"dts-critic": "^2.2.4",
"fs-extra": "^6.0.1",
"strip-json-comments": "^2.0.1",
"tslint": "5.14.0",
"typescript": "next"
},
"devDependencies": {
"@types/fs-extra": "^5.0.2",
"@types/node": "^7.10.7",
"@types/strip-json-comments": "^0.0.28"
},
"engines": {
"node": ">=6.10.0"
},
"license": "MIT"
}