forked from Akryum/floating-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.49 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
{
"name": "v-tooltip",
"version": "2.0.0-beta.5",
"description": "Easy tooltips with Vue 2.x",
"main": "dist/v-tooltip.common.js",
"unpkg": "dist/v-tooltip.browser.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --config config/webpack.config.dev.js --progress --watch",
"build": "npm run build:browser && npm run build:common",
"build:browser": "cross-env NODE_ENV=production webpack --config config/webpack.config.browser.js --progress --hide-modules",
"build:common": "cross-env NODE_ENV=production webpack --config config/webpack.config.common.js --progress --hide-modules",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Akryum/vue-tooltip.git"
},
"keywords": [
"vue",
"tooltip"
],
"author": "Guillaume Chau <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Akryum/vue-tooltip/issues"
},
"homepage": "https://github.com/Akryum/vue-tooltip#readme",
"dependencies": {
"tooltip.js": "^1.1.2"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.16.0",
"cross-env": "^3.1.3",
"eslint": "^3.12.1",
"eslint-config-standard": "^6.2.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"webpack": "^2.2",
"webpack-merge": "^1.1.2"
}
}