-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
66 lines (66 loc) · 2.16 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
{
"private": false,
"name": "@growthbunker/vuetimeline",
"version": "0.1.17",
"author": "Growth Bunker <[email protected]>",
"license": "MIT",
"description": "One easy-to-use component to build beautiful responsive timelines.",
"keywords": [
"vue",
"components",
"timeline"
],
"homepage": "https://www.growthbunker.dev/vuetimeline",
"repository": {
"type": "git",
"url": "https://github.com/growthbunker/vuetimeline.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/growthbunker/vuetimeline/issues"
},
"main": "dist/vuetimeline.ssr.js",
"module": "dist/vuetimeline.esm.js",
"unpkg": "dist/vuetimeline.min.js",
"files": [
"dist/*",
"src/**/*.vue",
"!src/lib-dev.vue"
],
"scripts": {
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife",
"lint": "npm run lint:es; npm run lint:scss;",
"lint:es": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:scss": "stylelint '**/*.scss'; stylelint '**/*.vue' --syntax scss; exit 0;"
},
"dependencies": {
"@growthbunker/vuedarkmode": "0.5.48",
"scrollreveal": "4.0.5",
"timeago.js": "4.0.1"
},
"devDependencies": {
"@growthbunker/stylesheets": "0.2.13",
"autoprefixer": "9.6.1",
"cross-env": "6.0.3",
"minimist": "1.2.3",
"node-sass": "4.13.1",
"pug": "2.0.4",
"pug-lint-vue": "^0.3.0",
"pug-plain-loader": "1.0.0",
"rollup": "1.26.1",
"rollup-plugin-buble": "0.19.8",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "5.1.2",
"rollup-plugin-vue": "5.1.1",
"stylelint": "^12.0.0",
"stylelint-config-recommended-scss": "^4.1.0",
"stylelint-processor-html": "^1.0.0",
"stylelint-scss": "^3.13.0",
"vue": "2.6.10",
"vue-template-compiler": "2.6.10"
}
}