mirror of
http://36.133.248.69:3088/admin/RentWeAppFront.git
synced 2026-03-07 17:32:25 +08:00
61 lines
1.9 KiB
JSON
61 lines
1.9 KiB
JSON
|
|
{
|
||
|
|
"name": "axios-miniprogram-adapter",
|
||
|
|
"version": "0.3.5",
|
||
|
|
"description": "Axios adapter for miniprogram",
|
||
|
|
"main": "dist/index.js",
|
||
|
|
"jsnext:main": "dist/index.esm.js",
|
||
|
|
"module": "dist/index.esm.js",
|
||
|
|
"miniprogram": "dist/miniprogram",
|
||
|
|
"sideEffects": false,
|
||
|
|
"scripts": {
|
||
|
|
"rename": "node rename.js",
|
||
|
|
"clean": "rimraf ./dist",
|
||
|
|
"lint": "eslint -c config/.eslintrc.js src --ext .ts --fix",
|
||
|
|
"build:self": "rollup -c config/rollup.config.js",
|
||
|
|
"build:esm": "rollup -c config/rollup.config.esm.js",
|
||
|
|
"build:aio": "rollup -c config/rollup.config.aio.js",
|
||
|
|
"build:self.all": "cross-env NODE_ENV=production npm run build:self",
|
||
|
|
"build": "npm run clean && npm run build:self && npm run build:esm && npm run build:aio && npm run build:self.all",
|
||
|
|
"test": "npm run lint && npm run build && mocha",
|
||
|
|
"mocha": "mocha",
|
||
|
|
"release": "git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags"
|
||
|
|
},
|
||
|
|
"author": "bigMeow(lizong9527@gmail.com)",
|
||
|
|
"license": "MIT",
|
||
|
|
"repository": {
|
||
|
|
"type": "git",
|
||
|
|
"url": "git://github.com/bigMeow/axios-miniprogram-adapter.git"
|
||
|
|
},
|
||
|
|
"bugs": {
|
||
|
|
"url": "https://github.com/bigMeow/axios-miniprogram-adapter/issues"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"axios",
|
||
|
|
"adapter",
|
||
|
|
"wechat",
|
||
|
|
"miniprogram",
|
||
|
|
"微信小程序"
|
||
|
|
],
|
||
|
|
"devDependencies": {
|
||
|
|
"@rollup/plugin-commonjs": "^13.0.0",
|
||
|
|
"@rollup/plugin-node-resolve": "^8.1.0",
|
||
|
|
"@vue/eslint-config-standard": "^4.0.0",
|
||
|
|
"@vue/eslint-config-typescript": "^3.1.1",
|
||
|
|
"cdkit": "^1.1.0",
|
||
|
|
"cross-env": "^5.2.0",
|
||
|
|
"eslint": "^5.9.0",
|
||
|
|
"eslint-plugin-vue": "^5.0.0-beta.5",
|
||
|
|
"expect.js": "^0.3.1",
|
||
|
|
"miniprogram-api-typings": "^2.10.1-1",
|
||
|
|
"mocha": "^5.2.0",
|
||
|
|
"rimraf": "2.6.2",
|
||
|
|
"rollup": "^2.20.0",
|
||
|
|
"rollup-plugin-sourcemaps": "^0.6.2",
|
||
|
|
"rollup-plugin-typescript2": "^0.27.1",
|
||
|
|
"tslib": "^1.9.3",
|
||
|
|
"typescript": "^3.1.6"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"axios": "^0.19.2"
|
||
|
|
}
|
||
|
|
}
|