-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.22 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "newtondb",
"version": "0.3.0",
"description": "A simple, easy to use and extendible JSON database.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"benchmark": "npm run build:benchmark && node .dist-benchmark/benchmark/run.js",
"build": "rm -rf .build && tsc --project tsconfig.build.json",
"build:benchmark": "rm -rf .build-benchmark && tsc --project tsconfig.benchmark.json",
"ci": "concurrently \"npm:lint\" \"npm:test\"",
"deploy": "./deploy.sh",
"docs": "typedoc --plugin typedoc-plugin-markdown src/index.ts",
"docs:dev": "typedoc --plugin typedoc-plugin-markdown src/index.ts --watch",
"jest": "jest",
"lint": "eslint src/",
"prepare": "husky install",
"semantic-release": "HUSKY=0 semantic-release",
"test": "jest src/"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "https://github.com/alexberriman/newtondb.git"
},
"keywords": [
"json",
"database",
"local-database",
"json-db",
"json-database"
],
"author": "Alex Berriman <[email protected]>",
"license": "MIT",
"sideEffects": false,
"bugs": {
"url": "https://github.com/alexberriman/newtondb/issues"
},
"homepage": "https://github.com/alexberriman/newtondb",
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@faker-js/faker": "^7.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node18": "^2.0.0",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"benny": "^3.7.1",
"concurrently": "^8.0.1",
"dot-json": "^1.2.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.8",
"semantic-release": "^21.0.1",
"ts-jest": "^29.1.0",
"typedoc": "^0.24.6",
"typedoc-plugin-markdown": "^3.15.2",
"typescript": "^5.0.4"
},
"dependencies": {
"rfc6902": "^5.0.1"
}
}