2015-09-29 04:23:21 +03:00
|
|
|
{
|
2019-12-24 19:18:20 +03:00
|
|
|
"name": "code-push",
|
2024-07-02 15:01:44 +03:00
|
|
|
"version": "4.2.2",
|
2019-12-24 19:18:20 +03:00
|
|
|
"description": "Management SDK for the CodePush service",
|
|
|
|
"main": "script/index.js",
|
|
|
|
"types": "script/index.d.ts",
|
|
|
|
"scripts": {
|
|
|
|
"clean": "shx rm -rf bin",
|
|
|
|
"setup": "npm install --quiet --no-progress",
|
|
|
|
"prebuild": "npm run clean",
|
|
|
|
"build": "tsc && npm run content",
|
|
|
|
"prebuild:release": "npm run clean",
|
2023-11-08 18:52:37 +03:00
|
|
|
"build:release": "tsc -p ./tsconfig-release.json && npm run check:release && npm run content",
|
|
|
|
"check:release" : "npx ts-node .github/scripts/check-for-declaration.ts",
|
2019-12-24 19:18:20 +03:00
|
|
|
"test": "npm run build && mocha --recursive bin/test",
|
|
|
|
"test:debugger": "mocha --recursive --inspect-brk=0.0.0.0 bin/test",
|
2023-08-16 19:41:45 +03:00
|
|
|
"content": "shx cp {README.md,package.json,.npmignore} bin"
|
2019-12-24 19:18:20 +03:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Microsoft/code-push.git"
|
|
|
|
},
|
|
|
|
"author": "Microsoft Corporation",
|
|
|
|
"license": "MIT",
|
|
|
|
"homepage": "https://microsoft.github.io/code-push",
|
|
|
|
"dependencies": {
|
2023-01-13 11:56:44 +03:00
|
|
|
"appcenter-file-upload-client": "0.1.0",
|
2023-08-16 11:12:14 +03:00
|
|
|
"proxy-agent": "^6.3.0",
|
2020-04-09 12:21:00 +03:00
|
|
|
"recursive-fs": "^2.1.0",
|
2019-12-24 19:18:20 +03:00
|
|
|
"slash": "^3.0.0",
|
2023-01-13 06:37:35 +03:00
|
|
|
"superagent": "^8.0.0",
|
2020-04-09 12:21:00 +03:00
|
|
|
"yazl": "^2.5.1"
|
2019-12-24 19:18:20 +03:00
|
|
|
},
|
2015-09-29 04:23:21 +03:00
|
|
|
"devDependencies": {
|
2021-09-20 16:05:53 +03:00
|
|
|
"@types/mocha": "^9.0.0",
|
2020-08-04 19:23:33 +03:00
|
|
|
"@types/node": "^14.0.27",
|
2019-12-24 19:18:20 +03:00
|
|
|
"@types/slash": "^3.0.0",
|
2021-09-20 16:05:53 +03:00
|
|
|
"@types/superagent": "^4.1.13",
|
2019-12-24 19:18:20 +03:00
|
|
|
"@types/yazl": "^2.4.2",
|
2022-01-25 22:20:39 +03:00
|
|
|
"mocha": "^9.2.0",
|
2022-01-25 22:28:53 +03:00
|
|
|
"shx": "^0.3.4",
|
2021-09-20 16:05:53 +03:00
|
|
|
"superagent-mock": "^4.0.0",
|
2023-08-16 11:12:14 +03:00
|
|
|
"typescript": "^5.1.6"
|
2015-09-29 04:23:21 +03:00
|
|
|
}
|
|
|
|
}
|