-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.34 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": "vue-visible",
"version": "1.0.2",
"description": "v-visible directive for Vuejs",
"main": "dist/v-visible.js",
"scripts": {
"test": "karma start karma.conf.js",
"build": "npm run test && rm -rf ./dist && webpack --config ./webpack.config.js && webpack --config webpack.config.min.js",
"release": "sh ./release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javisperez/vue-visible.git"
},
"keywords": [
"vue",
"vuejs",
"vue-visible",
"vuevisible",
"v-visible",
"directive",
"v-show",
"visibility",
"visible",
"hidden"
],
"author": {
"name": "Javis Perez",
"email": "[email protected]"
},
"homepage": "https://github.com/javisperez/vue-visible",
"readme": "README.md",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"jasmine": "^2.5.3",
"jasmine-core": "^2.5.2",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.0",
"karma-webpack": "^2.0.2",
"vue": "^2.2.2",
"webpack": "^2.2.1"
}
}