-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.58 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
80
81
{
"name": "table-builder",
"version": "1.3.0",
"description": "Dynamic tables with pagination and sorting for data visualization",
"main": "dist/js/main.js",
"module": "src/js/plugin.js",
"scripts": {
"start": "npm run watch",
"watch": "cross-env NODE_ENV=development BROWSERSLIST_ENV=modern gulp",
"watch:legacy": "cross-env NODE_ENV=development BROWSERSLIST_ENV=legacy gulp",
"build": "npm test && npm run build:modern && npm run build:legacy",
"build:modern": "cross-env NODE_ENV=production cross-env BROWSERSLIST_ENV=modern gulp",
"build:legacy": "cross-env NODE_ENV=production cross-env BROWSERSLIST_ENV=legacy rollup -c",
"test": "jest --no-cache"
},
"repository": {
"type": "git",
"url": "[email protected]:awes-io/table-builder.git"
},
"keywords": [
"table",
"table builder",
"vue",
"vuejs",
"awes-io"
],
"files": [
"dist/css/main.css",
"dist/js/main.js",
"dist/js/main.legacy.js"
],
"awes-files": [
"css/main.css",
"js/main.js",
"js/main.legacy.js"
],
"author": "Awescode GmbH",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@vue/test-utils": "^1.0.0-beta.29",
"autoprefixer": "^9.4.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"browser-sync": "^2.26.3",
"core-js": "^2.6.3",
"cross-env": "^5.2.0",
"cssnano": "^4.1.7",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-noop": "^1.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-rollup": "^2.16.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-stylus": "^2.7.0",
"jest": "^24.8.0",
"nib": "^1.1.2",
"postcss-import": "^12.0.1",
"rollup": "^0.68.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-license": "^0.7.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-postcss": "^1.6.3",
"rollup-plugin-terser": "^4.0.2",
"rollup-plugin-vue": "^4.3.2",
"stylus": "^0.54.5",
"vue-jest": "^3.0.4",
"vue-template-compiler": "^2.5.21"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"vue": "^2.6.10"
}
}