-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.58 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"author": "Jason Williscroft",
"bugs": {
"url": "https://github.com/karmaniverous/controlled-proxy/issues"
},
"description": "Control & modify the behavior of any object non-destructively at runtime.",
"devDependencies": {
"@dotenvx/dotenvx": "^1.19.3",
"@eslint/js": "^9.12.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/chai": "^5.0.0",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint-plugin-mocha": "^10.4.0",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.5",
"auto-changelog": "^2.5.0",
"chai": "^5.1.1",
"cross-env": "^7.0.3",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.3.0",
"jsdom-global": "^3.0.2",
"knip": "^5.33.3",
"lefthook": "^1.7.18",
"mocha": "^10.7.3",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"typedoc": "^0.26.10",
"typedoc-plugin-mdn-links": "^3.3.3",
"typedoc-plugin-replace-text": "^4.0.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0",
"winston": "^3.15.0"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/mjs/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist"
],
"homepage": "https://github.com/karmaniverous/controlled-proxy#readme",
"keywords": [
"dynamo-db",
"sharding"
],
"license": "BSD-3-Clause",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"name": "@karmaniverous/controlled-proxy",
"publishConfig": {
"access": "public"
},
"release-it": {
"git": {
"changelog": "npx auto-changelog --stdout --commit-limit false --unreleased --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs",
"commitMessage": "chore: release v${version}",
"requireBranch": "main"
},
"github": {
"release": true
},
"hooks": {
"after:init": [
"npm run lint",
"npm run test",
"npm run build"
],
"before:npm:release": [
"npx auto-changelog -p",
"npm run docs",
"git add -A"
],
"after:release": [
"git switch -c release/${version}",
"git push -u origin release/${version}",
"git switch ${branchName}"
]
},
"npm": {
"publish": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/karmaniverous/controlled-proxy.git"
},
"scripts": {
"build": "rimraf dist && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"docs": "typedoc",
"knip": "knip",
"lint": "eslint src/** && prettier -c src",
"lint:fix": "eslint --fix src/** && prettier --write src",
"release": "dotenvx run -f .env.local -- release-it",
"release:pre": "dotenvx run -f .env.local -- release-it --no-git.requireBranch --github.prerelease --preRelease",
"test": "dotenvx run --quiet --log-level=LOG_LEVEL=debug -- nyc mocha"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "0.1.3"
}