forked from chrisben/imgcache.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 823 Bytes
/
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
{
"name": "@chrisben/imgcache.js",
"version": "2.0.0",
"description": "JS library based on the File API to cache images for offline recovery (target: cordova/phonegap & chrome)",
"main": "lib/imgcache.js",
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git://github.com/chrisben/imgcache.js.git"
},
"scripts": {
"test": "eslint lib/*.js",
"start": "node server.js"
},
"keywords": [
"image",
"cache",
"html5",
"file",
"filesystem",
"offline"
],
"author": "Christophe BENOIT",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/chrisben/imgcache.js/issues"
},
"homepage": "https://github.com/chrisben/imgcache.js",
"devDependencies": {
"eslint": "^3.2.2",
"static-server": "^2.0.3"
}
}