forked from microsoft/android-app-size-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.89 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
54
{
"name": "android-app-size-diff",
"version": "1.0.5",
"description": "Azure DevOps task to measure the size in Android app size by looking at 2 given APKs and AABs",
"main": "index.js",
"scripts": {
"build": "npm run build-ts && npm run copy-files",
"adoTask": "npm run build && node dist/src/ado-index.js",
"build-ts": "tsc",
"copy-files": "ts-node copyFiles.ts",
"test": "npm run build && mocha dist/test/**/*.js",
"bundle": "npm run build && npm run bundle-ado-task && npm run bundle-gh-action",
"bundle-gh-action": "ncc build src/gh-action-index.ts -m -o dist_gh_action",
"bundle-ado-task": "tfx extension create --manifest-globs ado-extension.json",
"bump-major": "ts-node bumpVersion.ts major",
"bump-minor": "ts-node bumpVersion.ts minor",
"bump-patch": "ts-node bumpVersion.ts patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/android-app-size-ci.git"
},
"keywords": [
"android",
"app",
"size",
"ado"
],
"author": "Praveen Pendyala",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/android-app-size-ci/issues"
},
"homepage": "https://github.com/microsoft/android-app-size-ci#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@types/adm-zip": "^0.4.32",
"@types/line-reader": "0.0.28",
"adm-zip": "^0.4.13",
"applicationinsights": "^1.6.0",
"azure-pipelines-task-lib": "^3.1.10",
"line-reader": "^0.4.0"
},
"devDependencies": {
"@types/download": "^6.2.4",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.1",
"@types/q": "^1.5.2",
"@types/shelljs": "^0.8.5",
"download": "^7.1.0",
"shelljs": "^0.8.5",
"sync-request": "^6.1.0"
}
}