minimax-client
Version:
TypeScript client library for the Minimax accounting API (https://moj.minimax.rs/RS/API/)
102 lines (101 loc) • 2.78 kB
JSON
{
"name": "minimax-client",
"version": "0.1.3",
"description": "TypeScript client library for the Minimax accounting API (https://moj.minimax.rs/RS/API/)",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exclude": [
"examples",
".env",
".env.example"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"build:dev": "rollup -c -w",
"build:full": "node build.js",
"dev": "npm run build:dev",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint --ext .ts,.js src/",
"lint:fix": "eslint --ext .ts,.js src/ --fix",
"format": "prettier --write 'src/**/*.{ts,js}'",
"format:check": "prettier --check 'src/**/*.{ts,js}'",
"example:invoice": "node examples/invoice-example.js",
"example:employees": "node examples/employees-example.js",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"prepare": "npm run build",
"publish:dry": "npm publish --dry-run",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"keywords": [
"minimax",
"accounting",
"api",
"client",
"serbia"
],
"author": "Miljan Tekic",
"license": "MIT",
"dependencies": {
"axios": ">=1.0.0",
"qs": "^6.11.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"axios-mock-adapter": "2.1.0",
"dotenv": "16.5.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"rimraf": "^6.0.1",
"rollup": "^2.79.2",
"ts-jest": "^29.1.1",
"ts-node": "10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miljantekic/minimax-client-js.git"
},
"bugs": {
"url": "https://github.com/miljantekic/minimax-client-js/issues"
},
"homepage": "https://github.com/miljantekic/minimax-client-js#readme",
"sideEffects": false,
"peerDependencies": {
"axios": ">=1.0.0"
},
"peerDependenciesMeta": {
"axios": {
"optional": false
}
},
"ts-node": {
"transpileOnly": true,
"compilerOptions": {
"module": "commonjs"
}
}
}