-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 2.28 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
{
"name": "wepback-vsts-extension",
"version": "4.2.0",
"description": "webpack Visual Studio Team System (VSTS) Extension",
"main": "index.js",
"scripts": {
"setup-sample-one": "cd samples/multiple-webpack-build-steps/webpack-project-one && yarn",
"setup-sample-two": "cd samples/multiple-webpack-build-steps/webpack-project-two && yarn",
"setup-sample-webpack2": "cd samples/webpack-2 && yarn",
"setup-sample-webpack3": "cd samples/webpack-3 && yarn",
"setup-sample-webpack3-with-issues": "cd samples/webpack-3-with-issues && yarn",
"setup-sample-webpack-ts-config": "cd samples/webpack-ts-config && yarn",
"setup-sample-webpack-4": "cd samples/webpack-4 && yarn",
"setup-samples": "yarn run setup-sample-one && yarn run setup-sample-two && yarn run setup-sample-webpack2 && yarn run setup-sample-webpack3 && yarn run setup-sample-webpack3-with-issues && yarn run setup-sample-webpack-ts-config && yarn run setup-sample-webpack-4",
"setup": "yarn run setup-samples && yarn && cd tasks/webpack-build-task && yarn",
"tslint": "tslint 'tasks/webpack-build-task/**/*.ts' -e 'tasks/webpack-build-task/node_modules/**/*'",
"build-without-setup": "tsc && yarn run tslint",
"build": "yarn run setup && yarn run build-without-setup",
"update-version": "node updateVersion.js",
"update-version-without-setup": "yarn run build-without-setup && yarn run update-version",
"release": "yarn run build && yarn run update-version && node node_modules/tfx-cli/_build/tfx-cli.js extension create --manifest-glob vss-extension.json --output-path ./dist/webpack-vsts-extension.vsix",
"test-reporter": "cd tasks/webpack-build-task && mocha tests/integrationTests/suite.js tests/messageParserTests/index.js --reporter mocha-junit-reporter --reporter-options mochaFile=./test-results.xml",
"test": "yarn run build-without-setup && cd tasks/webpack-build-task && mocha tests/integrationTests/suite.js tests/messageParserTests/index.js"
},
"author": "Dealogic",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/chai": "4.1.4",
"@types/mocha": "5.2.5",
"@types/node": "10.7.1",
"chai": "4.1.2",
"mocha": "5.2.0",
"mocha-junit-reporter": "1.18.0",
"tfx-cli": "0.5.14",
"tslint": "5.11.0",
"typescript": "3.0.1"
}
}