forked from karbassi/stormdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
46
47
48
49
{
"name": "stormdb",
"version": "0.3.0",
"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}",
"read-benchmark": "node benchmarks/readBenchmark.js",
"write-benchmark": "node benchmarks/writeBenchmark.js",
"benchmark": "npm run read-benchmark & npm run write-benchmark",
"test": "mocha ./tests --recursive --exit",
"coverage": "nyc npm run test",
"report-coverage": "nyc report --reporter=text-lcov | coveralls"
},
"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"
]
}