forked from microsoft/AzureDevOps-WSJF-Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.4 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
{
"description": "",
"main": "webpack.config.js",
"scripts": {
"clean": "rimraf dist *.vsix",
"dev": "webpack-dev-server --hot --progress --colors --content-base ./src --https",
"package:dev": "node ./scripts/packageDev",
"publish:dev": "npm run package:dev && node ./scripts/publishDev",
"build:release": "npm run clean && mkdir dist && webpack --progress --colors --output-path ./dist -p",
"publish:release": "npm run build:release && node ./scripts/publishRelease",
"dev:test": "karma start",
"test": "karma start --single-run",
"postinstall": "typings install"
},
"author": "Christopher Schleiden",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"copy-webpack-plugin": "^3.0.0",
"css-loader": "^0.23.1",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.3",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.5",
"karma-webpack": "^1.7.0",
"mocha": "^2.5.3",
"node-sass": "^3.7.0",
"phantomjs-prebuilt": "^2.1.7",
"rimraf": "^2.5.2",
"sass-loader": "^3.2.0",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"tfx-cli": "^0.3.20",
"ts-loader": "^0.8.2",
"typescript": "^1.8.10",
"typings": "^1.0.4",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"vss-web-extension-sdk": "^1.100.0"
}
}