23 lines
561 B
JSON
23 lines
561 B
JSON
{
|
|
"name": "@rondo.dev/http-client",
|
|
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/http-client",
|
|
"version": "0.0.1",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"lint": "tslint --project .",
|
|
"compile": "tsc",
|
|
"clean": "rm -rf lib/"
|
|
},
|
|
"dependencies": {
|
|
"@rondo.dev/http-types": "file:../http-types",
|
|
"axios": "^0.19.0"
|
|
},
|
|
"main": "lib/index.js",
|
|
"module": "esm/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"devDependencies": {
|
|
"@rondo.dev/test-utils": "file:../test-utils"
|
|
}
|
|
}
|