-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.45 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
{
"name": "vuenime",
"version": "1.0.3",
"description": "A flexible Vue wrapper for Animejs",
"keywords": [
"vue",
"vuejs",
"component",
"animation",
"SVG",
"animejs",
"anime"
],
"main": "dist/vuenime.js",
"author": "Mikhail Panichev <[email protected]>",
"homepage": "https://github.com/denisinvader/vuenime",
"bugs": {
"url": "https://github.com/denisinvader/vuenime/issues"
},
"repository": "github:denisinvader/vuenime",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@storybook/addon-knobs": "^5.1.11",
"@storybook/addon-options": "^5.1.11",
"@storybook/vue": "^5.1.11",
"@ubic/eslint-config": "^1.1.0",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0.2",
"eslint": "^6.3.0",
"rollup": "^1.21.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-uglify": "^6.0.3",
"rollup-plugin-vue": "^5.0.1",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"animejs": "^3.1.0",
"vue": "^2.6.10"
},
"scripts": {
"lint": "eslint ./ --ext .js --ext .vue",
"build": "rm -rf dist && rollup -c",
"prepublishOnly": "yarn lint && yarn build",
"postpublish": "git push && git push --tags",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o docs"
}
}