-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathpackage.json
65 lines (65 loc) · 2.16 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
{
"name": "vue-observe-visibility",
"description": "Detect when an element is becoming visible or hidden on the page. ",
"version": "1.0.0",
"author": {
"name": "Guillaume Chau",
"email": "guillaume.b.chau@gmail.com"
},
"keywords": [
"vue",
"vuejs",
"plugin"
],
"license": "MIT",
"main": "dist/vue-observe-visibility.umd.js",
"module": "dist/vue-observe-visibility.esm.js",
"unpkg": "dist/vue-observe-visibility.min.js",
"scripts": {
"dev": "nodemon --exec 'npm run build' --watch src",
"build": "npm run build:browser && npm run build:es && npm run build:umd",
"build:browser": "rollup --config build/rollup.config.browser.js",
"build:es": "rollup --config build/rollup.config.es.js",
"build:umd": "rollup --config build/rollup.config.umd.js",
"prepublishOnly": "npm run build && npm run lint && npm run test",
"lint": "eslint . --ext js",
"serve": "serve -p 8080",
"test": "start-server-and-test serve 8080 test:e2e",
"test:e2e:open": "cypress open",
"test:e2e": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Akryum/vue-observe-visibility.git"
},
"bugs": {
"url": "https://github.com/Akryum/vue-observe-visibility/issues"
},
"homepage": "https://github.com/Akryum/vue-observe-visibility#readme",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.2",
"babel-eslint": "^10.1.0",
"cross-env": "^5.2.0",
"cypress": "^6.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.19.0",
"rollup": "^1.7.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-terser": "^4.0.4",
"serve": "^6.5.8",
"start-server-and-test": "^1.11.7"
}
}