resty-client
Version:
Simple HTTP and REST client library for Browser and Node
97 lines (96 loc) • 2.69 kB
JSON
{
"name": "resty-client",
"version": "0.0.5",
"description": "Simple HTTP and REST client library for Browser and Node",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"request",
"api",
"rest",
"restful",
"resty",
"rest client",
"http",
"https"
],
"files": [
"es",
"lib",
"typings",
"*.md"
],
"module": "es/index.js",
"main": "lib/index.js",
"typings": "typings/index.d.ts",
"exports": {
"import": "./es/index.js",
"require": "./lib/index.js"
},
"scripts": {
"prepare": "husky install",
"dev": "npm run clean & cross-env NODE_ENV=dev rollup -c rollup.config.js -w",
"build": "npm run clean &cross-env NODE_ENV=production rollup -c rollup.config.js",
"eslint:fix": "eslint --color --fix ./src",
"format": "prettier --write ./src",
"test": "jest --config jest.config.json",
"example": "cd example && npm run dev",
"gc": "git-cz",
"release": "standard-version",
"clean": "rimraf lib es typings"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"@types/jasmine-ajax": "^3.3.3",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-alloy": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"jasmine-ajax": "^4.0.0",
"jasmine-core": "^3.4.0",
"jest": "^24.9.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.56.2",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-typescript-paths": "^1.3.0",
"standard-version": "^9.3.1",
"typescript": "^4.4.4"
},
"repository": {
"type": "git",
"url": "https://github.com/vnues/resty-client"
},
"author": "vnues",
"license": "MIT",
"homepage": "https://github.com/vnues/resty-client",
"lint-staged": {
"src/**/*.ts?(x)": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"axios": ">=0.21.1"
}
}