procurement-vuex
Version:
Commerce vuex module
74 lines (73 loc) • 2.55 kB
JSON
{
"name": "procurement-vuex",
"version": "2.2.2",
"description": "Commerce vuex module",
"keywords": [
"vue",
"vuex",
"oak"
],
"author": "Rares Pop",
"homepage": "https://git.treelet.net/retainhub/retainhub-procurement-vuex",
"license": "MIT",
"scripts": {
"scripts:umd": "rollup --config --output.format umd --name oak-vuex --output.file dist/index.js src/index.js",
"scripts:es": "rollup --config --output.format es --name oak-vuex --output.file dist/index.esm.js src/index.js",
"scripts:minify": "uglifyjs --compress --mangle --comments --output dist/index.min.js dist/index.js && uglifyjs --compress --mangle --comments --output dist/index.esm.min.js dist/index.esm.js",
"scripts": "yarn run scripts:umd && yarn run scripts:es && yarn run scripts:minify",
"build": "yarn run scripts",
"lint:scripts": "eslint --ignore-path .gitignore .",
"lint:scripts-md": "eslint --config .eslintrc-md.json --ext md --ignore-path .gitignore .",
"lint": "yarn run lint:scripts && yarn run lint:scripts-md",
"coveralls": "yarn run test:coverage && cat coverage/lcov.info | coveralls",
"test:unit": "jest src",
"test:integration": "jest test",
"test:coverage": "jest --coverage --maxWorkers=4",
"test": "yarn run test:unit && yarn run test:integration",
"prepublishOnly": "yarn run build"
},
"dependencies": {
"global": "^4.4.0",
"oak-vuex": "^2.3.0",
"yalc": "^1.0.0-pre.53"
},
"devDependencies": {
"@avalanche/eslint-config": "^4.0.0",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.5.5",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"coveralls": "^3.0.6",
"eslint": "^6.2.1",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-markdown": "^1.0.0",
"jest": "^24.9.0",
"rollup": "^2.26.9",
"rollup-plugin-babel": "^4.3.3",
"uglify-es": "^3.3.9",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.6.2"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"repository": {
"type": "git",
"url": "https://git.treelet.net/retainhub/retainhub-procurement-vuex"
},
"bugs": {
"url": "https://git.treelet.net/retainhub/retainhub-procurement-vuex/issues"
},
"browserslist": [
"last 2 versions"
],
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/package/"
]
}
}