forked from Click2Buy/vue-pivot-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.6 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
{
"name": "@click2buy/vue-pivot-table",
"description": "A vue component for pivot table",
"private": false,
"version": "1.1.5",
"author": "Click2Buy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Click2Buy/vue-pivot-table"
},
"main": "library-dist/vue-pivot-table.common.js",
"files": [
"library-dist",
"plugin-dist",
"src"
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build-lib": "npm run build-lib:library && npm run build-lib:plugin",
"build-lib:library": "vue-cli-service build --target lib --name vuePivotTable --filename vue-pivot-table src/library-entry.js --dest library-dist/",
"build-lib:plugin": "vue-cli-service build --target lib --name vuePivotTable --filename vue-pivot-table src/library-plugin.js --dest plugin-dist/",
"lint": "vue-cli-service lint",
"eslint:github-action": "eslint --output-file eslint_report.json --format json src --ext .js,.vue",
"prepublishOnly": "npm run build-lib"
},
"dependencies": {
"core-js": "^3.6.5",
"vue": "^2.6.11",
"vuedraggable": "^2.24.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"babel-eslint": "^10.1.0",
"bootstrap": "^4.6.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"javascript-natural-sort": "^0.7.1",
"lodash-es": "^4.17.21",
"many-keys-map": "^1.0.3",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"thenby": "^1.3.4",
"vue-template-compiler": "^2.6.11"
}
}