-
Notifications
You must be signed in to change notification settings - Fork 221
/
package.json
78 lines (78 loc) · 2.05 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
75
76
77
78
{
"name": "eagle.js",
"version": "0.6.1",
"description": "Slideshow framework for Vue.js",
"main": "dist/eagle.cjs.js",
"module": "dist/eagle.es.js",
"repository": {
"type": "git",
"url": "https://github.com/zulko/eagle.js"
},
"files": [
"dist",
"src"
],
"keywords": [
"slideshow",
"slide",
"presentation",
"vue.js"
],
"author": "Zulko",
"license": "ISC",
"scripts": {
"prepublishOnly": "npm run build",
"build": "node build/build.js",
"storybook": "start-storybook -p 9001 -c .storybook",
"format": "prettier --write src/themes/**/*.scss src/themes/*.scss",
"lint": "eslint --ext vue,js --format node_modules/eslint-friendly-formatter src test",
"test": "jest --bail",
"test:watch": "jest --watch"
},
"dependencies": {
"lodash.throttle": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@storybook/vue": "^5.1.1",
"@vue/test-utils": "^1.0.0-beta.29",
"animate.css": "^3.7.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0.2",
"css-loader": "^1.0.0",
"eslint": "^3.14.1",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-plugin-html": "^2.0.3",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"file-loader": "^2.0.0",
"jest": "^24.8.0",
"node-sass": "^4.12.0",
"prettier": "^1.15.1",
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
"rollup": "^1.14.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-vue": "^5.0.0",
"sass-loader": "^7.1.0",
"shelljs": "^0.7.6",
"vue": "^2.6.10",
"vue-jest": "^4.0.0-beta.2",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10"
},
"peerDependencies": {
"animate.css": "^3.0.0 || ^4.0.0",
"vue": "^2.0.0"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 6.0.0"
}
}