-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "money-clip",
"description": "For managing your client side cache. Tiny wrapper over IndexedDB supporting versioning and max age.",
"version": "3.0.5",
"author": "Henrik Joreteg <[email protected]> (joreteg.com)",
"bugs": {
"url": "https://github.com/HenrikJoreteg/money-clip/issues"
},
"dependencies": {
"idb-keyval": "5.1.3"
},
"devDependencies": {
"esm": "3.2.25",
"microbundle": "0.13.3",
"tape": "5.3.1"
},
"files": [
"dist"
],
"homepage": "https://github.com/HenrikJoreteg/money-clip",
"keywords": [
"PWA",
"cache",
"indexeddb"
],
"license": "MIT",
"main": "dist/money-clip.js",
"module": "dist/money-clip.m.js",
"prettier": {
"semi": false,
"singleQuote": true,
"arrowParens": "avoid"
},
"repository": {
"type": "git",
"url": "https://github.com/HenrikJoreteg/money-clip.git"
},
"scripts": {
"build": "microbundle --external none --compress false --sourcemap false",
"prepublish": "npm run build",
"test": "tape test.js"
},
"source": "index.js"
}