UNPKG

flo-utils

Version:
101 lines (100 loc) 2.52 kB
{ "name": "flo-utils", "version": "0.8.3", "description": "some utils ", "main": "lib/index.js", "module": "es/index.js", "unpkg": "dist/floUtils.js", "files": [ "lib", "es", "dist" ], "scripts": { "test": "npm run lint && npm run unit", "unit": "jest --no-cache", "lint": "eslint --fix --cache --ext .js --format=pretty src", "lint-staged": "lint-staged", "prettier": "prettier -c --write \"**/**\"", "dist": "fire-tools run dist", "build": "npm run compile && npm run dist", "ready": "npm run test && npm run build", "compile": "fire-tools run compile", "release": "npm run ready && npm publish" }, "repository": { "type": "git", "url": "git+https://github.com/FireLeafone/FL-utils.git" }, "keywords": [ "utils", "flo" ], "author": "narutone", "license": "MIT", "bugs": { "url": "https://github.com/FireLeafone/FL-utils/issues" }, "homepage": "https://github.com/FireLeafone/FL-utils#readme", "husky": { "hooks": { "pre-commit": "npm run lint-staged" } }, "lint-staged": { "src/**/*.{js,ts}": [ "prettier --write", "npm run lint", "git add" ] }, "dependencies": { "lodash": "^4.17.21", "moment": "^2.27.0" }, "devDependencies": { "@babel/cli": "^7.10.5", "@babel/core": "^7.11.1", "@babel/plugin-transform-runtime": "^7.11.0", "@babel/preset-env": "^7.11.0", "@babel/runtime": "^7.11.2", "babel-eslint": "^10.1.0", "babel-jest": "^26.3.0", "babel-loader": "^8.1.0", "babel-plugin-lodash": "^3.3.4", "chalk": "^4.1.0", "eslint": "^7.7.0", "eslint-config-airbnb-base": "^14.2.0", "eslint-config-prettier": "^6.11.0", "eslint-formatter-pretty": "^4.0.0", "eslint-import-resolver-alias": "^1.1.2", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-import": "^2.22.0", "eslint-plugin-prettier": "^3.1.4", "eslint-plugin-unicorn": "^21.0.0", "fire-tools": "^0.1.3", "husky": "^4.2.5", "jest": "^26.4.1", "lint-staged": "^10.2.11", "lodash-webpack-plugin": "^0.11.5", "ora": "^5.0.0", "pre-commit": "^1.2.2", "prettier": "^2.0.5", "rimraf": "^3.0.2", "webpack": "^4.44.1", "webpack-cli": "^3.3.12" }, "peerDependencies": { "lodash": "^4.17.20", "moment": "^2.27.0" }, "engines": { "node": ">= 6.0.0", "npm": ">= 3.0.0" }, "browserslist": [ "> 1%", "last 2 versions", "not ie <= 8" ] }