forked from karbassi/stormdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 983 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
39
40
41
42
43
44
{
"name": "stormdb",
"version": "0.5.2",
"description": "StormDB is a tiny, lightweight, 0 dependency, easy-to-use JSON-based database for NodeJS, the browser or Electron.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "webpack --config .webpack.config.js",
"prepublishOnly": "npm run build",
"format": "prettier --write {**,**/**}/*.{js,md}",
"test": "mocha ./tests --recursive --exit"
},
"repository": "TomPrograms/stormdb",
"files": [
"index.js",
"index.d.ts",
"src/",
"dist/",
"Readme.md",
"Changelog.md",
"LICENSE"
],
"author": "Tom",
"license": "MIT",
"devDependencies": {
"coveralls": "^3.0.9",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"keywords": [
"database",
"JSON",
"file",
"embed",
"embeddable",
"localStorage",
"node",
"browser",
"electron"
]
}