forked from microsoft/vsts-extension-multivalue-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.08 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
{
"main": "webpack.config.js",
"scripts": {
"clean": "rimraf dist *.vsix vss-extension-release.json src/*js libs",
"dev": "webpack-dev-server --hot --progress --colors --content-base ./src --https --port 8888",
"dev:http": "webpack-dev-server --hot --progress --colors --content-base ./src --http --port 8888",
"package:dev": "node ./scripts/packageDev",
"package:dev:http": "node ./scripts/packageDevHttp",
"package:release": "node ./scripts/packageRelease",
"package:beta": "node ./scripts/packageBeta",
"publish:dev": "npm run package:dev && node ./scripts/publishDev",
"build:styles": " node ./node_modules/sass/sass.js ./src/multi-selection.scss ./dist/multi-selection.css",
"build:dev": "npm run clean && mkdir dist && npm run build:styles && webpack --progress --colors --output-path ./dist",
"build:release": "npm run clean && mkdir dist && npm run build:styles && webpack --progress --colors --output-path ./dist -p",
"publish:release": "npm run build:release && node ./scripts/publishRelease",
"test": "karma start --single-run",
"postinstall": "typings install"
},
"devDependencies": {
"@types/applicationinsights-js": "^1.0.5",
"@types/jquery": "^2.0.41",
"@types/jsonpath": "^0.2.0",
"@types/react": "^16.4.8",
"@types/react-dom": "^16.0.7",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^3.2.0",
"jsonpath": "^1.0.2",
"lodash": "^4.17.15",
"office-ui-fabric-react": "^6.47.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"rimraf": "^2.6.1",
"sass": "^1.23.3",
"style-loader": "^0.16.1",
"ts-loader": "^4.4.2",
"typescript": "^3.0.1",
"typings": "^2.1.1",
"vss-web-extension-sdk": "^5.141.0",
"webpack": "^4.16.5",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^2.11.5"
},
"dependencies": {
"es6-promise": "^4.2.8"
},
"name": "multivalue-control-extension",
"license": "MIT",
"description": "VSTS Work Item Form Multivalue Control Extension",
"repository": "",
"private": false,
"version": "0.0.0"
}