-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.59 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "NanoStorage",
"version": "1.0.0",
"description": "A tiny javascript storage using indexedDB engine to store data in browser",
"main": "dist/nano-storage.js",
"exports": {
".": {
"production": {
"require": "./dist/nano-storage.min.js",
"default": "./dist/nano-storage.min.js"
},
"development": {
"require": "./dist/nano-storage.js",
"default": "./dist/nano-storage.js"
},
"default": {
"require": "./dist/nano-storage.js",
"default": "./dist/nano-storage.js"
}
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/nanoblocktech/nano-storage.js.git"
},
"keywords": [
"indexeddb",
"browser",
"database"
],
"author": "Peter Ujah <https://github.com/peterujah>",
"contributors": [
"Nonoblock Technology <https://github.com/nanoblocktech>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nanoblocktech/nano-storage.js/issues"
},
"scripts": {
"build": "just-build",
"watch": "just-build --watch",
"clean": "rm -rf tools/tmp && rm dist/*.js && rm dist/*.map && rm dist/*.ts && rm dist/*.mjs",
},
"just-build": {
"default": [
"# Build all targets (es5, es6 and test) and minify the default es5 UMD module",
"just-build release test"
],
"gzip": [
"# Optionally gzip to find the size of the minified & gzipped version",
"gzip dist/nano-storage.min.js -k -f -9"
]
},
"homepage": "https://nanoblocktech.com",
"devDependencies": {
"glob": "^8.0.3",
}
}