-
Notifications
You must be signed in to change notification settings - Fork 216
/
package.json
38 lines (38 loc) · 867 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
36
37
38
{
"name": "@chrisben/imgcache.js",
"version": "2.1.1",
"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"
},
"engines": {
"node": ">=9.10.0"
},
"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": "^5.16.0",
"static-server": "^2.2.1"
}
}