nuxt-storage
Version:
🛢 Utilities for easy read and write browser's storage in Nuxt.js project
74 lines (73 loc) • 2.17 kB
JSON
{
"name": "nuxt-storage",
"version": "1.2.2",
"description": "🛢 Utilities for easy read and write browser's storage in Nuxt.js project",
"scripts": {
"clean": "rimraf dist",
"copy": "node ./copy.js",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"test": "jest",
"lint": "eslint --ext .js --ignore-path .gitignore .",
"lint:fix": "eslint --ext .js --ignore-path .gitignore . --fix",
"lint:report": "eslint --ext .js --ignore-path .gitignore . --fix -f html-extended -o eslint-report.html",
"prepublishOnly": "yarn clean && yarn build && yarn copy",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mazipan/nuxt-storage.git"
},
"keywords": [
"nuxt",
"nuxt-storage",
"browser-storage",
"local-storage",
"session-storage"
],
"author": "Irfan Maulana <github.com/mazipan>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mazipan/nuxt-storage/issues"
},
"homepage": "https://github.com/mazipan/nuxt-storage#readme",
"main": "dist/nuxt-storage.min.js",
"files": [
"nuxt-storage.js",
"src",
"dist",
"local-storage",
"session-storage"
],
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"compression-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "5.0.4",
"cross-env": "5.2.0",
"eslint": "6.2.0",
"eslint-config-standard": "14.0.0",
"eslint-formatter-html-extended": "1.0.2",
"eslint-loader": "2.2.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"husky": "3.0.4",
"jest": "24.9.0",
"lint-staged": "9.2.3",
"rimraf": "3.0.0",
"webpack": "4.39.2",
"webpack-cli": "3.3.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}