-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "concisedb",
"version": "1.0.3",
"description": "A database library stores JSON file for Node.js.",
"keywords": [
"database",
"JSON",
"db",
"local"
],
"license": "MIT",
"author": "RotCool",
"repository": {
"type": "git",
"url": "git+https://github.com/Rotten-LKZ/concisedb.git"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"start": "node dist/index.js",
"build": "tsup",
"dev": "webpack --mode=development && node dist/index.js",
"docs": "node ./utils/typedocGenerate.js && typedoc",
"test": "jest",
"test:c": "jest --coverage"
},
"bugs": {
"url": "https://github.com/Rotten-LKZ/concisedb/issues"
},
"homepage": "https://www.concisedb.top",
"devDependencies": {
"@antfu/eslint-config": "^0.18.9",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"eslint": "^8.12.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"tsup": "^5.12.4",
"typedoc": "^0.22.13",
"typescript": "^4.6.3"
}
}