-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 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
{
"name": "lightdb",
"version": "0.1.0",
"description": "A tiny database for in-memory transactions",
"main": "index.js",
"scripts": {
"clean": "npm outdated && npm prune",
"cleanInstall": "rm -rf node_modules/ package-lock.json && npm i",
"dev": "node index.js",
"docs": "jsdoc -c jsdocs.js -r",
"lint": "eslint . --ignore-pattern test",
"lint-all": "eslint .",
"lint-errors": "eslint . --quiet",
"preversion": "npm test",
"start": "node index.js",
"test": "mocha --trace-warnings"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Parellin-Technologies-LLC/LightDB.git"
},
"keywords": [
"light",
"database"
],
"author": "iskore <nick@parellin.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Parellin-Technologies-LLC/LightDB/issues"
},
"homepage": "https://github.com/Parellin-Technologies-LLC/LightDB#readme",
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.0.0",
"eslint": "^4.19.1",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"request": "^2.87.0"
},
"dependencies": {
"@parellin/lightmap": "file:../lightmap",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"http-response-class": "^1.2.2",
"superstruct": "^0.5.4",
"uuid": "^3.3.2"
}
}