-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "vue-offline-preloader",
"version": "0.0.4",
"description": "This is a Vue component that uses Service Workers to enable offline experiences and preloading/caching of assets for improved performance",
"main": "dist/index.js",
"scripts": {
"build": "npm run build:webpack && npm run build:es5",
"build:webpack": "rm -rf dist && NODE_ENV=production webpack",
"build:es5": "babel dist/index.js -o dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/marktalbot/vue-offline-preloader"
},
"keywords": [
"vuejs",
"vue",
"vue-component",
"offline-first",
"service-worker",
"preloading"
],
"bugs": {
"url": "https://github.com/marktalbot/vue-offline-preloader/issues"
},
"homepage": "https://github.com/marktalbot/vue-offline-preloader",
"peerDependencies": {
"vue": "^2.3.3"
},
"author": "Mark Talbot <[email protected]> (https://marktalbot.ca)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.24.1",
"browser-env": "^2.0.31",
"css-loader": "^0.28.4",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"http-server": "^0.10.0",
"vue": "^2.3.3",
"vue-loader": "^12.2.1",
"vue-node": "^1.1.1",
"vue-template-compiler": "^2.3.3",
"webpack": "^2.6.1"
},
"babel": {
"presets": [
"latest"
]
}
}