forked from microsoft/vsts-extension-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
{
"name": "samples-ui-fabric-react",
"version": "1.0.0",
"description": "Sample Visual Studio Team Services web extension using Office UI Fabric React",
"main": "index.html",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vsts-extension-samples"
},
"scripts": {
"build": "gulp",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"vsts",
"extension",
"office-ui-fabric-react"
],
"author": "Microsoft Corporation",
"contributors": [
{
"name": "Serkan Inci",
"email": "serkani@microsoft.com"
},
{
"name": "Trevor Gau",
"email": "trgau@microsoft.com"
}
],
"license": "MIT",
"devDependencies": {
"@types/react": "^15.6.1",
"@types/react-dom": "^15.5.2",
"@types/q": "0.0.32",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-template": "^4.0.0",
"gulp-typescript": "^3.1.3",
"gulp-webpack": "^1.5.0",
"tfx-cli": "^0.4.9",
"typescript": "~2.3.4",
"webpack": "^1.15.0",
"yargs": "^6.5.0"
},
"dependencies": {
"office-ui-fabric-react": "^4.35.0",
"vss-web-extension-sdk": "~3.121.0"
}
}