-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.45 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.45 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
{
"name": "reproduce",
"description": "Validate a package's reproducibility against it's published repository information.",
"version": "1.2.0",
"license": "MIT",
"author": "vlt technology inc. <ops@vlt.sh>",
"bin": {
"reproduce": "./dist/cli.js"
},
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/vltpkg/reproduce.git"
},
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "tsc --watch",
"test": "npm run lint && tsx --no-warnings test/run.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preppack": "npm install && npm run build && npm run test"
},
"publishConfig": {
"engines": {}
},
"dependencies": {
"@vltpkg/package-info": "^0.0.0-0.1730724342581",
"@vltpkg/spec": "^0.0.0-0.1730724342581",
"minargs": "^2.0.3"
},
"devDependencies": {
"@types/node": "^22.13.9",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"p-queue": "^8.0.1",
"tsx": "^4.21.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"npm": "^11.1.0"
},
"keywords": [
"reproducible",
"provenance",
"vlt",
"npm",
"package",
"info",
"spec",
"security",
"audit",
"dependency",
"dependencies",
"dependency-audit"
]
}