-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 1.98 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
74
75
76
77
78
79
{
"name": "vue-sheets",
"version": "1.2.4",
"description": "Vue components based on the JUI grids available in Vue.js",
"main": "src/main.js",
"files": [
"bundles",
"dist",
"examples",
"src",
"package.json",
"README.md",
"webpack.config.js",
"webpack.dev.js",
"webpack.prod.js"
],
"scripts": {
"start": "npm run dev",
"dev": "webpack-dev-server --env dev",
"dist": "npm run test && webpack --env=prod",
"dist:classic": "webpack --env=prod",
"dist:dark": "webpack --env=prod",
"test": "jest --config ./jest.config.js"
},
"keywords": [
"vue",
"vue-graph",
"vue-uix",
"jui",
"component",
"javascript",
"ui",
"uix"
],
"repository": {
"type": "git",
"url": "git+https://github.com/juijs/vue-sheets.git"
},
"author": "alvin.h <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/juijs/vue-sheets/issues"
},
"homepage": "https://github.com/juijs/vue-sheets#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"css-loader": "^0.28.11",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-serializer-vue": "^2.0.2",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^1.1.2",
"vue-jest": "^3.0.4",
"vue-loader": "^15.7.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"vue-test-utils": "^1.0.0-beta.11",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"jquery": "^3.4.1",
"juijs-grid": "^2.6.1",
"juijs-ui": "^2.3.6",
"vue": "^2.6.10"
}
}