-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 1.91 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
66
67
68
69
70
71
72
{
"name": "fetch-sync",
"version": "2.0.0",
"description": "Proxy fetch requests through the Background Sync API",
"main": "lib/client.js",
"jsnext:main": "src/client.js",
"author": "Sam Gluck <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sdgluck/fetch-sync.git"
},
"scripts": {
"lint": "standard src/**/*.js",
"build": "babel src --out-dir lib",
"build:umd": "webpack --config webpack.development.config.js",
"build:umd:min": "webpack --config webpack.production.config.js",
"watch": "webpack --progress --colors --watch --config webpack.development.config.js",
"clean": "rm -rf dist lib",
"test": "node test/server.js",
"prepublish": "npm run lint && npm run clean && npm run build && npm run build:umd && npm run build:umd:min"
},
"bugs": {
"url": "https://github.com/sdgluck/fetch-sync/issues"
},
"homepage": "https://github.com/sdgluck/fetch-sync#readme",
"keywords": [
"background",
"sync",
"service",
"worker",
"http",
"helper",
"utility",
"tool",
"module",
"network",
"fetch",
"request",
"requests",
"proxy",
"proxies"
],
"dependencies": {
"idb-wrapper": "^1.6.2",
"mini-defer": "0.0.2",
"msgr": "^2.0.0",
"serialise-request": "0.0.7",
"serialise-response": "0.0.4",
"shortid": "^2.2.6",
"sw-register": "^0.4.0"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.3",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.3.13",
"catch-and-match": "^0.2.13",
"chai": "^3.4.1",
"express": "^4.13.4",
"mocha": "^2.3.4",
"moment": "^2.12.0",
"standard": "^6.0.5",
"webpack": "^2.0.1-beta"
},
"standard": {
"parser": "babel-eslint"
}
}