batchloader
Advanced tools
Comparing version 0.0.14 to 0.0.15
{ | ||
"name": "batchloader", | ||
"version": "0.0.14", | ||
"version": "0.0.15", | ||
"description": "BatchLoader is a utility for data fetching layer to reduce requests via batching written in TypeScript. Inspired by Facebook's DataLoader", | ||
@@ -8,12 +8,13 @@ "main": "lib/index.js", | ||
"scripts": { | ||
"all": "yarn clean && yarn format && yarn lint:fix && yarn test && yarn build && yarn build:es5", | ||
"all": "npm run clean && npm run format && npm run lint:fix && npm run test && npm run build && npm run build:es5", | ||
"build": "tsc -p ./tsconfig.json && tscpaths -p ./tsconfig.json -s ./src -o ./lib", | ||
"build:es5": "tsc -p ./tsconfig.es5.json && tscpaths -p ./tsconfig.es5.json -s ./src -o ./es5", | ||
"clean": "rm -rf ./lib ./es5 ./coverage", | ||
"clean": "rm -rf ./lib ./es5 ./es6 ./coverage", | ||
"format": "prettier --write \"./*.{js,jsx,ts,tsx}\" \"./src/**/*.{js,jsx,ts,tsx}\"", | ||
"lint": "tslint -c ./tslint.json \"src/**/*\"", | ||
"lint:fix": "tslint --fix -c ./tslint.json \"src/**/*\"", | ||
"precommit": "yarn all", | ||
"reinstall": "rm -rf ./node_modules yarn.lock && yarn", | ||
"start": "yarn test", | ||
"precommit": "npm run all", | ||
"prepublish": "npm run all", | ||
"reinstall": "rm -rf ./node_modules ./package-lock.json ./yarn.lock && npm i", | ||
"start": "npm run test", | ||
"test": "jest", | ||
@@ -42,15 +43,15 @@ "test:coverage": "jest --coverage", | ||
"devDependencies": { | ||
"@types/jest": "^24.0.13", | ||
"@types/node": "^12.0.2", | ||
"coveralls": "^3.0.3", | ||
"@types/jest": "^24.0.15", | ||
"@types/node": "^12.0.10", | ||
"coveralls": "^3.0.4", | ||
"jest": "^24.8.0", | ||
"pre-commit": "^1.2.2", | ||
"prettier": "^1.17.1", | ||
"prettier": "^1.18.2", | ||
"ts-jest": "^24.0.2", | ||
"tscpaths": "^0.0.9", | ||
"tslint": "^5.16.0", | ||
"tslint": "^5.18.0", | ||
"tslint-config-airbnb": "^5.11.1", | ||
"tslint-config-prettier": "^1.18.0", | ||
"typescript": "^3.4.5" | ||
"typescript": "^3.5.2" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
57189
40
0