-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
59 lines (59 loc) · 1.84 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
{
"name": "vue-parallax-js",
"version": "0.2.3",
"description": "Tiny vue component that adds a directive for parallax effect on elements.",
"main": "./lib/vue-parallax-js.cjs.js",
"module": "./lib/vue-parallax-js.es.js",
"jsnext:main": "./lib/vue-parallax-js.es.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"dev": "rollup -c rollup.config.js -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsnanigans/vue-parallax-js.git"
},
"keywords": [
"vue",
"vue parallax",
"parallax",
"vue-component"
],
"readme": "README.md",
"author": "Brendan Mullins <[email protected]> (https://github.com/jsnanigans)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsnanigans/vue-parallax-js/issues"
},
"homepage": "https://github.com/jsnanigans/vue-parallax-js#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0",
"uglify-es": "^3.3.9",
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue-libs": "^3.0.0"
}
}