forked from theblacksmith/typescript-compiler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 838 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
{
"name": "typescript-compiler",
"version": "1.5.0+tsc.1.8",
"description": "Typescript compiler wrapper",
"main": "index.js",
"scripts": {
"build": "make build",
"test": "make build && mocha --compilers ts:typescript-require"
},
"repository": {
"type": "git",
"url": "https://github.com/theblacksmith/typescript-compiler.git"
},
"keywords": [
"TypeScript",
"compiler",
"language",
"javascript",
"api"
],
"author": "The Blacksmith (a.k.a. Saulo Vallory)",
"license": "MIT",
"bugs": {
"url": "https://github.com/theblacksmith/typescript-compiler/issues"
},
"homepage": "https://github.com/theblacksmith/typescript-compiler",
"readmeFilename": "README.md",
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.0.1",
"typescript-require": ">=0.2.7"
}
}