forked from angular/ts-api-guardian
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
47
48
49
50
51
52
{
"name": "ts-api-guardian",
"version": "0.2.2",
"description": "Guards the API of TypeScript libraries!",
"main": "build/lib/main.js",
"typings": "build/definitions/main.d.ts",
"bin": {
"ts-api-guardian": "./bin/ts-api-guardian"
},
"directories": {
"test": "test"
},
"dependencies": {
"chalk": "^1.1.3",
"diff": "^2.2.3",
"minimist": "^1.2.0",
"typescript": "2.0.10"
},
"devDependencies": {
"chai": "^2.1.1",
"gulp": "^3.8.11",
"gulp-mocha": "^2.0.0",
"source-map": "^0.4.2",
"source-map-support": "^0.3.1",
"gulp-sourcemaps": "^1.5.0",
"gulp-typescript": "^2.7.6",
"gulp-util": "^3.0.4",
"merge2": "^0.3.1",
"tsd": "^0.6.0",
"clang-format": "^1.0.25",
"gulp-clang-format": "^1.0.21"
},
"scripts": {
"prepublish": "npm install tsd@^0.6.0 && tsd reinstall --overwrite && gulp compile",
"test": "gulp test.unit"
},
"repository": {},
"keywords": [
"typescript"
],
"contributors": [
"Alex Eagle <[email protected]> (https://angular.io/)",
"Martin Probst <[email protected]> (https://angular.io/)",
"Victor Savkin<[email protected]> (https://victorsavkin.com)",
"Igor Minar<[email protected]> (https://angular.io/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/angular/ts-api-guardian/issues"
},
"homepage": "https://github.com/angular/ts-api-guardian"
}