forked from mxx1111/sparepack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.06 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
{
"name": "sparepack",
"version": "0.1.1",
"description": "Turn a slice of a private repository into a shareable task pack: contracts and tests, no business logic",
"type": "module",
"license": "MIT",
"author": "Sean Mu (@mxx1111)",
"repository": {
"type": "git",
"url": "git+https://github.com/mxx1111/sparepack.git"
},
"keywords": [
"redaction",
"anonymization",
"outsourcing",
"privacy",
"code-review",
"secrets-scanning"
],
"engines": {
"node": ">=22"
},
"bin": {
"sparepack": "bin/sparepack.mjs"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test": "node --test test/*.test.mjs",
"prepublishOnly": "npm test && node bin/sparepack.mjs --help > /dev/null"
},
"dependencies": {
"typescript": "^5.9.0",
"yaml": "^2.8.0"
},
"homepage": "https://github.com/mxx1111/sparepack#readme",
"bugs": {
"url": "https://github.com/mxx1111/sparepack/issues"
}
}