-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1016 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
45
{
"name": "simpl.db",
"version": "2.12.1",
"description": "A lightweight, 0 dependency, easy-to-use local database using JSON to store data",
"license": "MIT",
"author": "5antos#4876",
"main": "./index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/5antos/simpl.db.git"
},
"keywords": [
"database",
"db",
"easy",
"json",
"local",
"lightweight",
"quick",
"simple"
],
"bugs": {
"url": "https://github.com/5antos/simpl.db/issues"
},
"homepage": "https://simpldb.js.org",
"devDependencies": {
"@types/node": "^18.7.13",
"eslint": "^8.12.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "npm run lint && jest",
"lint": "eslint .",
"fix": "eslint --fix .",
"prepare": "husky install",
"typescript": "ts-node-transpile-only tests/_global.ts"
}
}