-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.18 KB
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
{
"name": "dirfile-db",
"version": "0.0.6",
"description": "A directory/file based data storage project",
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "npm-run-all clean:dbs build:types esbuild:test -s kistest",
"kistest": "kistest --testExtension .test.js --testOutDir dist/tests",
"build": "npm-run-all -s clean:dist -p esbuild build:types",
"build:types": "tsc --project configs/tsconfig.types.json",
"esbuild": "node ./scripts/build.js",
"esbuild:test": "node ./scripts/test.js",
"lint": "eslint src/**/*.ts --config configs/.eslintrc.json --format stylish",
"lint:fix": "eslint src/**/*.ts --config configs/.eslintrc.json --format stylish --fix",
"clean": "npm-run-all clean:dist clean:dbs",
"clean:dist": "rimraf dist",
"clean:dbs": "rimraf defaultDB testDBs",
"reinstall": "rimraf node_modules && npm install",
"reset": "npm-run-all clean reinstall"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nathanbbarton/dirfile-db.git"
},
"author": "Nathan Barton",
"license": "MIT",
"bugs": {
"url": "https://github.com/nathanbbarton/dirfile-db/issues"
},
"homepage": "https://github.com/nathanbbarton/dirfile-db#readme",
"devDependencies": {
"@kistools/test": "^0.0.2",
"@stylistic/eslint-plugin": "2.3.0",
"@types/node": "20.12.12",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"esbuild": "0.23.0",
"eslint": "8.57.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"npm-run-all": "^4.1.5",
"rimraf": "6.0.1",
"typescript": "5.4.2"
},
"engines": {
"node": ">=20.9.0"
}
}