-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.42 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
50
51
52
53
54
55
56
57
58
{
"name": "lux-db",
"version": "1.0.0",
"description": "A high-performance document-based JSON database equiped with CRUD query API functionalities",
"repository": "[email protected]:abubalo/lux-db.git",
"author": "Abubakar Balogun <[email protected]>",
"license": "MIT",
"source": "src/lux-db.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"local": "ts-node ./",
"lint": "eslint src",
"test": "jest"
},
"keywords": [
"database",
"json-db",
"json-database",
"json database",
"typescript json database",
"javascript json database",
"js-db",
"lux-db",
"luxDB",
"lux DB",
"luxdb"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@changesets/cli": "^2.26.2",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.7.0",
"parcel": "^2.11.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@parcel/packager-ts": "^2.11.0",
"@parcel/transformer-typescript-types": "^2.11.0",
"typescript": "^5.2.2"
}
}