Skip to content

Commit 2de98ab

Browse files
committed
➖ Remove dependency
1 parent c6868c4 commit 2de98ab

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

package.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33
"version": "1.0.0",
44
"description": "Vue 2 component for parallax scrolling effects",
55
"author": "Jakub Juszczak <[email protected]>",
6+
"license": "MIT",
67
"repository": {
78
"type": "git",
89
"url": "git+ssh://[email protected]:apertureless/vue-parallax.git"
910
},
11+
"bugs": {
12+
"url": "https://github.com/apertureless/vue-parallax/issues"
13+
},
1014
"keywords": [
1115
"vue.js",
1216
"Vue",
@@ -15,19 +19,19 @@
1519
"image effect"
1620
],
1721
"main": "dist/vue-parallaxy.js",
22+
"unpkg": "dist/vue-parallaxy.js",
23+
"browser": "dist/vue-parallaxy.min.js",
1824
"files": [
1925
"dist"
2026
],
2127
"scripts": {
2228
"dev": "node build/dev-server.js",
23-
"build": "node build/build.js",
29+
"build": "yarn run release",
2430
"unit": "karma start test/unit/karma.conf.js --single-run",
2531
"test": "npm run unit",
2632
"lint": "eslint --ext .js,.vue src test/unit/specs",
27-
"release": "webpack --progress --hide-modules --config ./build/webpack.release.js && NODE_ENV=production webpack --progress --hide-modules --config ./build/webpack.release.min.js"
28-
},
29-
"dependencies": {
30-
"vue": "^2.2.1"
33+
"release": "webpack --progress --hide-modules --config ./build/webpack.release.js && NODE_ENV=production webpack --progress --hide-modules --config ./build/webpack.release.min.js",
34+
"prepublish": "yarn run lint && yarn run build"
3135
},
3236
"devDependencies": {
3337
"@nextindex/next-scss": "^1.0.7",
@@ -80,6 +84,7 @@
8084
"sinon": "^1.17.3",
8185
"sinon-chai": "^2.8.0",
8286
"url-loader": "^0.5.7",
87+
"vue": "^2.2.1",
8388
"vue-loader": "^11.1.3",
8489
"vue-style-loader": "^2.0.3",
8590
"vue-template-compiler": "^2.2.1",

0 commit comments

Comments
 (0)