-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.69 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
59
60
61
{
"name": "minivium",
"version": "0.3.0",
"description": "Minimalistic JSON database.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"bootstrap": "mkdir -p output",
"build": "tsup",
"all": "rm -rf dist && npm run precommit && npm run build",
"test": "jest -c jest.config.json",
"test:e2e": "jest -c jest.e2e.config.json",
"precommit": "npm run bootstrap && npm run lint && npm run test && npm run test:e2e",
"lint": "npm run lint:src && npm run lint:test",
"lint:src": "npx eslint -c .eslintrc.json src",
"lint:fix:src": "npx eslint --fix -c .eslintrc.json src",
"lint:test": "npx eslint -c .eslintrc.json test",
"lint:fix:test": "npx eslint --fix -c .eslintrc.json test"
},
"keywords": [
"json",
"database",
"node",
"ts",
"typescript",
"javascript"
],
"author": "Yusuf Shakeel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yusufshakeel/minivium.git"
},
"bugs": {
"url": "https://github.com/yusufshakeel/minivium/issues"
},
"homepage": "https://github.com/yusufshakeel/minivium#readme",
"engines": {
"node": ">18.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"madge": "^8.0.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}