-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "local-storage-blob-store",
"version": "0.0.3",
"description": "blob store that stores blobs on the browser's localStorage",
"main": "index.js",
"dependencies": {
"concat-stream": "^1.4.6",
"from2-array": "0.0.3"
},
"devDependencies": {
"abstract-blob-store": "^3.1.0",
"browserify": "^13.0.0",
"pre-commit": "^1.1.2",
"snazzy": "^2.0.1",
"standard": "^5.4.1",
"tape": "^2.14.0",
"tape-run": "^2.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/xicombd/local-storage-blob-store.git"
},
"author": "Francisco Dias (@xicombd)",
"license": "MIT",
"bugs": {
"url": "https://github.com/xicombd/local-storage-blob-store/issues"
},
"homepage": "https://github.com/xicombd/local-storage-blob-store",
"scripts": {
"test": "browserify test.js | tape-run",
"lint": "standard --verbose | snazzy"
},
"pre-commit": [
"test",
"lint"
],
"keywords": [
"blob",
"store",
"localStorage",
"browser",
"storage",
"local"
]
}