forked from TypeStrong/tsconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.49 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
53
54
55
56
57
58
59
60
61
{
"name": "tsconfig",
"version": "2.2.0",
"description": "TypeScript project file specification + implementation",
"main": "dist/tsconfig.js",
"files": [
"dist/",
"LICENSE",
"typings.json"
],
"scripts": {
"lint": "echo TODO",
"build": "npm run build-ts",
"build-ts": "rm -rf dist && typings install && tsc",
"test-spec": "mocha dist/**/*.spec.js -R spec --bail",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- dist/**/*.spec.js -R spec --bail",
"test": "npm run build && npm run lint && npm run test-cov",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/TypeStrong/tsconfig.git"
},
"keywords": [
"TypeScript",
"compiler",
"config",
"tsconfig",
"json",
"resolve"
],
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"contributors": [
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TypeStrong/tsconfig/issues"
},
"homepage": "https://github.com/TypeStrong/tsconfig",
"dependencies": {
"array-uniq": "^1.0.2",
"globby": "^4.0.0",
"parse-json": "^2.2.0",
"pinkie-promise": "^2.0.0",
"strip-bom": "^2.0.0",
"strip-json-comments": "^2.0.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"chai": "^3.0.0",
"istanbul": "^0.4.0",
"mocha": "^2.0.1",
"typescript": "^1.9.0-dev.20160210",
"typings": "^0.6.7"
}
}