diawi-nodejs-uploader/package.json

82 lines
2.0 KiB
JSON
Raw Normal View History

2020-09-24 06:33:04 +00:00
{
2020-09-25 05:22:23 +00:00
"name": "diawi-nodejs-uploader",
2020-09-24 06:33:04 +00:00
"version": "0.0.1",
"main": "index.js",
"author": "Andrey Ponomarenko",
2020-09-25 06:48:54 +00:00
"description": "A nodejs integration with Diawi app distribution api",
2020-09-24 06:33:04 +00:00
"license": "MIT",
2020-09-25 06:12:55 +00:00
"repository": {
"url": "git@github.com:Natteke/diawi-nodejs-uploader.git"
},
"keywords": [
"ipa",
"apk",
"diawi",
"nodejs",
"node",
"api",
"upload",
"mobile",
"app",
"ci",
"cd",
"too;"
],
2020-09-25 05:26:46 +00:00
"publishConfig": {
2020-09-25 05:44:07 +00:00
"access": "public",
"branches": [
"master"
]
2020-09-25 05:26:46 +00:00
},
"files": [
2020-09-25 07:04:52 +00:00
"dist",
2020-09-25 06:48:54 +00:00
"CHANGELOG.md",
"package.json",
"package-lock.json"
2020-09-25 05:26:46 +00:00
],
2020-09-24 11:18:42 +00:00
"scripts": {
2020-09-24 12:23:44 +00:00
"r": "yarn webpack && node dist/index.js",
2020-09-25 05:22:23 +00:00
"build": "yarn tsc && yarn tscpaths -p tsconfig.json -s ./src -o ./dist",
"release": "node scripts/release.js"
2020-09-24 11:18:42 +00:00
},
2020-09-24 06:33:04 +00:00
"dependencies": {
2020-09-24 11:18:42 +00:00
"form-data": "^3.0.0",
"node-fetch": "^2.6.1",
2020-09-24 06:33:04 +00:00
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
2020-09-25 05:22:23 +00:00
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
2020-09-25 05:44:07 +00:00
"@semantic-release/github": "^7.1.1",
2020-09-25 05:22:23 +00:00
"@semantic-release/npm": "^7.0.6",
"@semantic-release/release-notes-generator": "^9.0.1",
2020-09-24 06:36:22 +00:00
"@types/fs-extra": "^9.0.1",
2020-09-24 11:18:42 +00:00
"@types/node-fetch": "^2.5.7",
2020-09-24 06:36:22 +00:00
"@types/promise.allsettled": "^1.0.3",
2020-09-24 06:33:04 +00:00
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
2020-09-24 12:23:44 +00:00
"declaration-bundler-webpack-plugin": "^1.0.3",
2020-09-24 06:33:04 +00:00
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
2020-09-24 06:36:22 +00:00
"eslint-plugin-react": "^7.20.4",
2020-09-24 11:18:42 +00:00
"husky": "^4.3.0",
2020-09-25 05:22:23 +00:00
"semantic-release": "^17.1.2",
2020-09-24 11:18:42 +00:00
"ts-loader": "^8.0.2",
2020-09-24 12:23:44 +00:00
"tscpaths": "^0.0.9",
2020-09-24 11:18:42 +00:00
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.0"
2020-09-24 06:33:04 +00:00
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}