forked from gmetais/sw-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "sw-delta",
"version": "0.1.0",
"description": "A browser cache that only downloads the diff of modified files",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/unit --reporter spec",
"lint": "jshint index.js ./lib/*.js ./test/benchmark/*.js ./test/unit/*.js",
"compile-demo": "browserify -r ./demo/client/standalone-sw.js:sw-delta --standalone worker > ./demo/client/build/sw-delta.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gmetais/sw-delta.git"
},
"keywords": [
"serviceWorkers",
"performance",
"webperf",
"incremental",
"delta",
"versionning"
],
"author": "Gaël Métais",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/gmetais/sw-delta/issues"
},
"homepage": "https://github.com/gmetais/sw-delta#readme",
"dependencies": {
"calmcard": "0.1.1"
},
"devDependencies": {
"browserify": "13.0.1",
"chai": "3.2.0",
"compression": "1.6.2",
"express": "4.14.0",
"jshint": "2.9.2",
"mocha": "2.3.0",
"q": "1.4.1",
"sw-delta-nodejs": "0.0.*"
}
}