forked from danvk/typings-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 911 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
37
38
39
40
{
"name": "typings-checker",
"version": "1.1.2",
"description": "Positive and negative assertions about TypeScript types and errors",
"main": "dist/index.js",
"scripts": {
"prepublish": "tsc",
"lint": "tslint src/*.ts",
"test": "yarn lint && ./update-tests.sh"
},
"bin": {
"typings-checker": "dist/index.js"
},
"author": "Dan Vanderkam ([email protected])",
"license": "ISC",
"tags": [
"typescript",
"typings",
"definitelytyped"
],
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/lodash": "^4.14.47",
"@types/mocha": "^2.2.36",
"@types/node": "^7.0.0",
"@types/yargs": "^6.5.0",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"ts-node": "^2.0.0",
"tslint": "^4.3.1",
"typescript": "^2.2.1"
},
"dependencies": {
"lodash": "^4.17.4",
"yargs": "^6.6.0"
},
"peerDependencies": {
"typescript": "2.x"
}
}