-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 2.21 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
{
"name": "@renatodeleao/vue-sticky-directive",
"version": "0.3.0",
"description": "A Vue directive wrapping https://github.com/abouolia/sticky-sidebar to make smart and high performance sticky components",
"module": "dist/vue-sticky-directive.esm.js",
"browser": "dist/vue-sticky-directive.umd.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"parcel": "parcel examples/index.html --out-dir public",
"start": "npm run dev && npm run parcel",
"test": "node test/test.js",
"pretest": "npm run build",
"deploy:examples": "parcel build examples/index.html --out-dir public --public-url ./ && node deploy.js"
},
"dependencies": {
"resize-sensor": "0.0.6",
"sticky-sidebar": "git+https://github.com/abouolia/sticky-sidebar.git#master"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.1.0",
"@vue/component-compiler-utils": "^2.2.0",
"gh-pages": "^2.0.1",
"github-markdown-css": "^2.10.0",
"lodash.debounce": "^4.0.8",
"parcel-bundler": "^1.10.3",
"parcel-plugin-clean-easy": "^1.0.2",
"prismjs": "^1.15.0",
"rollup": "^0.66.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-terser": "^3.0.0",
"rollup-plugin-uglify": "^6.0.0",
"sass": "^1.14.2",
"vue": "^2.5.17",
"vue-hot-reload-api": "^2.3.1",
"vue-markdown": "^2.2.4",
"vue-template-compiler": "^2.5.17"
},
"repository": {
"type": "git",
"url": "git+https://github.com/renatodeleao/vue-sticky-directive.git"
},
"keywords": [
"vue",
"sticky",
"affix",
"directive",
"js",
"stickySidebar"
],
"author": "Renato de Leão <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/renatodeleao/vue-sticky-directive/issues"
},
"homepage": "https://github.com/renatodeleao/vue-sticky-directive#readme",
"alias": {
"vue": "./node_modules/vue/dist/vue.esm.js"
},
"posthtml": {
"recognizeSelfClosing": true
},
"parcelCleanPaths": [
"public/*.*"
]
}