forked from DiegoRBaquero/lf-chunk-store
-
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": "lf-chunk-store",
"description": "Browser localForage chunk store that is abstract-chunk-store compliant",
"version": "1.0.0",
"author": {
"name": "Diego Rodríguez Baquero",
"email": "[email protected]",
"url": "http://diegorbaquero.com/"
},
"bugs": {
"url": "https://github.com/DiegoRBaquero/lf-chunk-store/issues"
},
"dependencies": {
"localforage": "^1.3.0"
},
"devDependencies": {
"abstract-chunk-store": "^1.1.8",
"browserify": "^12.0.1",
"standard": "^5.4.1",
"tape": "^4.2.2",
"uglify-js": "^2.6.1"
},
"homepage": "https://github.com/DiegoRBaquero/lf-chunk-store",
"keywords": [
"abstract-chunk-store",
"chunk",
"localforage",
"lf",
"store"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:DiegoRBaquero/lf-chunk-store.git"
},
"scripts": {
"build": "browserify -s lf-chunk-store -e ./ | uglifyjs -m > dist/lf-chunk-store.min.js",
"build-dev": "browserify -s lf-chunk-store -e ./ > dist/lf-chunk-store.js",
"test": "standard && node test"
}
}