-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 905 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 905 Bytes
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
{
"name": "interstellar-db",
"version": "0.1.1",
"description": "A document based database which is easy to install and saves all data in an optimized binary format",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"prepublish": "npm run build",
"test": "mocha --require ts-node/register tests/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SMJS-Productions/InterstellarDB.git"
},
"author": "SMJS",
"license": "MIT",
"bugs": {
"url": "https://github.com/SMJS-Productions/InterstellarDB/issues"
},
"homepage": "https://github.com/SMJS-Productions/InterstellarDB#readme",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.16",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}