forked from remcoplasmeyer/flowy-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.57 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
{
"name": "@hipsjs/flowy-vue",
"version": "1.0.13",
"description": "Shopify draggable for Vue",
"main": "./dist/lib/flowy-vue.common.js",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"build:all": "npm run build:lib && npm run build:lib && npm run build:gh-pages",
"build:demo": "vue-cli-service build --dest dist/demo",
"build:gh-pages": "vue-cli-service build --dest docs",
"build:lib": "vue-cli-service build --target lib --dest dist/lib --name flowy-vue 'src/index.js' && npm run build:copy-api-files",
"build:copy-api-files": "copyfiles -f src/components/*.json dist/lib",
"lint": "npx eslint --ext .js,.vue src *.js",
"release": "bash scripts/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remcoplasmeyer/flowy-vue.git"
},
"files": [
"dist/lib"
],
"author": "Remco Plasmeijer <remco.plasmeijer@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/remcoplasmeyer/flowy-vue/issues"
},
"peerDependencies": {
"vue": "~2"
},
"dependencies": {
"@hipsjs/shopify-draggable-vue": "^1.0.7",
"lodash": "^4.17.15"
},
"devDependencies": {
"@vue/cli-plugin-babel": "4.4.1",
"@vue/cli-plugin-eslint": "4.4.1",
"@vue/cli-service": "4.4.1",
"@vue/eslint-config-airbnb": "5.0.2",
"babel-eslint": "10.1.0",
"copyfiles": "^2.3.0",
"core-js": "3.6.5",
"eslint": "7.1.0",
"eslint-plugin-vue": "6.2.2",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"vue": "2.6.11",
"vue-template-compiler": "2.6.11"
}
}