liquor-tree
Version:
A Vue.js tree component.
77 lines (76 loc) • 2.21 kB
JSON
{
"name": "liquor-tree",
"description": "A Vue.js tree component.",
"version": "0.2.70",
"author": "Kostiantyn <phlyze@gmail.com>",
"library": "LiquorTree",
"homepage": "https://amsik.github.io/liquor-tree/",
"scripts": {
"dev": "cross-env NODE_ENV=development rollup -w -c rollup.config.js",
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js -- --environment BUILD:production",
"lint": "eslint --fix src test",
"test": "npm run lint && npm run unit",
"unit": "jest",
"storybook": "start-storybook -p 9001 -c ./docs/storybook -s ./docs/storybook/public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amsik/liquor-tree.git"
},
"module": "dist/liquor-tree.esm.js",
"main": "dist/liquor-tree.umd.js",
"keywords": [
"vue",
"tree",
"component",
"vue-tree",
"treeview"
],
"license": "MIT",
"files": [
"src",
"dist/*.js"
],
"devDependencies": {
"@rollup/plugin-alias": "^2.2.0",
"@storybook/addon-notes": "^3.4.11",
"@storybook/addon-options": "^3.4.11",
"@storybook/vue": "^3.4.11",
"@vue/test-utils": "^1.0.0-beta.25",
"babel-core": "^6.26.3",
"babel-jest": "^22.4.4",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-plugin-jest": "^21.22.1",
"eslint-plugin-vue-libs": "^2.1.0",
"jest": "^22.4.4",
"rollup": "^0.66.6",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-uglify": "^6.0.3",
"rollup-plugin-vue": "4.6.0",
"vue": "^2.6.10",
"vue-jest": "^3.0.5",
"vue-loader": "^15.7.2",
"vue-template-compiler": "^2.6.10"
},
"jest": {
"setupFiles": [
"./tests/setupTests.js"
],
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"testEnvironment": "node"
}
}