-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "vue-visibility-change",
"version": "1.2.1",
"description": "vue directive for detect page visibility-change",
"main": "./lib/vue-visibility.js",
"scripts": {
"lint": "eslint .",
"build": "webpack --config build/webpack.prod.conf.js",
"test": "cross-env NODE_ENV=test karma start test/karma.conf.js --single-run"
},
"bugs": {
"url": "https://github.com/Yuliang-Lee/vue-visibility-change/issues"
},
"homepage": "https://github.com/Yuliang-Lee/vue-visibility-change",
"repository": {
"type": "git",
"url": "[email protected]:Yuliang-Lee/vue-visibility-change.git"
},
"keywords": [
"vue",
"directive",
"visibility-change"
],
"author": "xlaoyu <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-istanbul": "^5.1.0",
"babel-preset-power-assert": "^3.0.0",
"cross-env": "^5.2.0",
"eslint": "^5.12.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^5.1.0",
"karma": "^3.1.4",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-power-assert": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"power-assert": "^1.6.1",
"sinon": "^7.2.2",
"vue": "^2.5.22",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1"
},
"files": [
"lib",
"types"
],
"typings": "types/index.d.ts"
}