-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.11 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.11 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@paulshryock/abstractions",
"version": "0.4.0",
"description": "Reusable abstractions for Node.js.",
"keywords": [
"abstraction",
"command line",
"console",
"database",
"email",
"file system",
"network"
],
"homepage": "https://github.com/paulshryock/node-abstractions",
"bugs": {
"url": "https://github.com/paulshryock/node-abstractions/issues/new?assignees=&labels=bug&projects=&template=4_report_a_bug.md&title="
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulshryock/node-abstractions.git"
},
"license": "MIT",
"author": "Paul Shryock (https://github.com/paulshryock)",
"type": "module",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"./dist/index.js",
"./dist/index.d.ts"
],
"sideEffects": false,
"scripts": {
"precompile": "rm -rf dist",
"compile": "esbuild src/index.ts --bundle --format=esm --minify-syntax --minify-whitespace --outfile=dist/index.js --platform=node",
"docs": "typedoc",
"fix": "run-s format lint:fix",
"format": "npm run format:fix",
"format:check": "prettier --check --log-level=warn .",
"format:fix": "prettier --log-level=warn --write .",
"lint": "npm run lint:check",
"lint:check": "npx --node-options='--experimental-strip-types --no-warnings=ExperimentalWarning' eslint --flag unstable_native_nodejs_ts_config",
"lint:fix": "npm run lint -- --fix",
"prepack": "npm-run-all -p quality docs types -s test:acceptance",
"prepare": "npm run ts-node -- bin/prepare.ts",
"quality": "run-p format:check lint typecheck test compile",
"test": "node --experimental-vm-modules --no-warnings=ExperimentalWarning node_modules/jest/bin/jest.js",
"test:acceptance": "npm test -- --config=jest.config.acceptance.ts",
"ts-node": "node --loader ts-node/esm --no-warnings=ExperimentalWarning",
"typecheck": "tsc",
"types": "dts-bundle-generator --no-banner=true --out-file=dist/index.d.ts src/index.ts",
"upgrade:all": "ncu --upgrade",
"upgrade:dry-run": "ncu",
"upgrade:minor": "ncu --target=minor --upgrade",
"upgrade:patch": "ncu --target=patch --upgrade",
"version": "release-bump -epq --ignore=coverage,dist && git add ."
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.2",
"@babel/preset-typescript": "7.28.5",
"@eslint-community/eslint-plugin-eslint-comments": "4.7.1",
"@jest/globals": "30.3.0",
"@types/fs-extra": "11.0.4",
"@types/mock-fs": "4.13.4",
"@types/node": "24.12.2",
"@typescript-eslint/eslint-plugin": "8.59.0",
"@typescript-eslint/parser": "8.59.0",
"babel-jest": "30.3.0",
"dts-bundle-generator": "9.5.1",
"esbuild": "0.28.0",
"eslint": "10.2.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jest": "29.15.2",
"eslint-plugin-jsdoc": "62.9.0",
"eslint-plugin-json": "4.0.1",
"husky": "9.1.7",
"jest": "30.3.0",
"mock-fs": "5.5.0",
"npm-check-updates": "21.0.3",
"npm-run-all2": "8.0.4",
"prettier": "3.8.3",
"prettier-plugin-packagejson": "3.0.2",
"release-bump": "3.0.0-alpha.69",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typedoc": "0.28.19",
"typescript": "6.0.3"
},
"engines": {
"node": ">=14.13.1"
}
}