forked from microsoft/vss-web-extension-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1001 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
34
35
36
37
38
39
{
"name": "vss-web-extension-sdk",
"version": "2.109.1",
"description": "Visual Studio Team Services web extension JavaScript library and types.",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vss-web-extension-sdk.git"
},
"scripts": {
"build": "tsc -p .",
"prepublish": "npm run build"
},
"keywords": [
"extensions",
"visual studio team services"
],
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/vss-web-extension-sdk/issues"
},
"homepage": "https://www.visualstudio.com/integrate/extensions/overview",
"jspm": {
"main": "lib/VSS.SDK",
"format": "global"
},
"types": "./typings/index.d.ts",
"dependencies": {
"@types/jquery": "^2.0.34",
"@types/jqueryui": "^1.11.31",
"@types/knockout": "^3.4.38",
"@types/q": "0.0.32",
"@types/react": "^0.14.54",
"@types/requirejs": "^2.1.28"
},
"devDependencies": {
"typescript": "^2.0.10"
}
}