-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "csproj2ts",
"version": "1.1.0",
"description": "Library to parse TypeScript config info from a Visual Studio Project file",
"main": "csproj2ts.js",
"dependencies": {
"es6-promise": "^4.1.1",
"lodash": "^4.17.4",
"semver": "^5.4.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/lodash": "^4.14.80",
"@types/node": "^8.0.47",
"@types/nodeunit": "0.0.30",
"@types/semver": "^5.4.0",
"@types/xml2js": "^0.4.0",
"grunt": "^1.0.1",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-run": "^0.6.0",
"grunt-ts": "^6.0.0-beta.16",
"typescript": "^2.5.3"
},
"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"
}