forked from RobinCK/vue-popper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.3 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
{
"name": "vue-popperjs",
"version": "1.2.2",
"description": "VueJS popover",
"main": "dist/js/vue-popper.js",
"jsnext:main": "src/index.js",
"unpkg": "dist/js/vue-popper.min.js",
"files": [
"src",
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "node_modules/.bin/eslint ./",
"build": "node_modules/.bin/rollup -c ./build/rollup.config.js && NODE_ENV=production node_modules/.bin/rollup -c ./build/rollup.config.js",
"patch": "npm version patch --no-git-tag-version && git add package.json && git commit -m 'update version' && git push origin master && bower version patch && git push origin master --follow-tags && npm publish",
"minor": "npm version minor --no-git-tag-version && git add package.json && git commit -m 'update version' && git push origin master && bower version minor && git push origin master --follow-tags && npm publish",
"major": "npm version major --no-git-tag-version && git add package.json && git commit -m 'update version' && git push origin master && bower version major && git push origin master --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobinCK/vue-popper.git"
},
"author": "Igor Ognichenko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RobinCK/vue-popper/issues"
},
"keywords": [
"vue-popper.js",
"vue-popover",
"vuejs-popper.js",
"vuejs-popover",
"vue",
"vuejs",
"vue-plugin",
"vue-component"
],
"homepage": "https://github.com/RobinCK/vue-popper#readme",
"semistandard": {
"ignore": [
"node_modules",
"bower_components",
"build",
"dist",
"test"
]
},
"dependencies": {
"popper.js": "^1.9.1",
"vue": "^2.3.3"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"eslint": "^4.7.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-uglify": "^2.0.0",
"rollup-plugin-vue": "^2.4.0"
}
}