code-push/package.json

46 строки
1.3 KiB
JSON

{
"name": "code-push",
"version": "3.1.1",
"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",
"build:release": "tsc -p ./tsconfig-release.json && npm run content",
"test": "npm run build && mocha --recursive bin/test",
"test:debugger": "mocha --recursive --inspect-brk=0.0.0.0 bin/test",
"content": "shx cp {plugin.xml,README.md,package.json,.npmignore} bin"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/code-push.git"
},
"author": "Microsoft Corporation",
"license": "MIT",
"homepage": "https://microsoft.github.io/code-push",
"dependencies": {
"q": "^1.4.1",
"recursive-fs": "^1.1.2",
"slash": "^3.0.0",
"superagent": "^5.1.2",
"superagent-proxy": "^2.0.0",
"yazl": "^2.4.1"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.20",
"@types/q": "^1.5.2",
"@types/slash": "^3.0.0",
"@types/superagent": "^4.1.4",
"@types/yazl": "^2.4.2",
"mocha": "^6.2.2",
"shx": "^0.3.2",
"superagent-mock": "^3.7.0",
"typescript": "^3.7.3"
}
}