forked from TypeStrong/csproj2ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
{
"name": "csproj2ts",
"version": "0.0.6",
"description": "Library to parse TypeScript config info from a Visual Studio Project file",
"main": "csproj2ts.js",
"dependencies": {
"es6-promise": "^2.0.1",
"lodash": "^3.3.1",
"semver": "^5.0.1",
"xml2js": "^0.4.5"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-run": "^0.3.0",
"grunt-ts": "^4.2.0"
},
"scripts": {
"test": "grunt test",
"build": "grunt default",
"demo": "grunt demo"
},
"repository": {
"type": "git",
"url": "https://github.com/TypeStrong/csproj2ts.git"
},
"keywords": [
"typescript",
"tsc",
"visual",
"studio",
"csproj",
"vbproj"
],
"author": "Steve Ognibene",
"maintainers": [
{
"name": "nycdotnet",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TypeStrong/csproj2ts/issues"
},
"homepage": "https://github.com/TypeStrong/csproj2ts",
"typings": "csproj2ts.d.ts"
}