forked from amsik/liquor-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "liquor-tree",
"description": "A Vue.js tree component.",
"version": "0.2.60",
"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",
"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"
],
"dependencies": {},
"files": [
"src",
"dist/*.js"
],
"devDependencies": {
"@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.2",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-uglify": "^3.0.0",
"rollup-plugin-vue": "^3.0.0",
"vue": "^2.5.17",
"vue-jest": "^2.6.0",
"vue-loader": "^14.2.3",
"vue-template-compiler": "^2.5.17"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"testEnvironment": "node"
}
}