-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1 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
{
"name": "@neo4j/code-signer",
"version": "1.1.4",
"description": "A CLI tool for signing code",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"code-signer": "lib/cli.js"
},
"author": "Neo4j Inc.",
"license": "Apache-2.0",
"scripts": {
"build": "tsc && chmod +x lib/cli.js && cp -r src/folder-hash lib",
"test": "jest",
"prepack": "npm run build && npm test"
},
"dependencies": {
"@types/minimist": "1.2.2",
"@types/node-forge": "1.0.4",
"debug": "4.3.4",
"graceful-fs": "4.2.10",
"minimatch": "5.1.0",
"minimist": "1.2.6",
"node-fetch": "^2.6.1",
"node-forge": "1.3.1",
"p-limit": "3.1.0"
},
"devDependencies": {
"@types/fs-extra": "9.0.13",
"@types/jest": "29.0.0",
"@types/node": "18.7.14",
"@types/node-fetch": "^2.6.2",
"@types/tempy": "0.3.0",
"fs-extra": "10.1.0",
"jest": "29.0.1",
"tempy": "1.0.1",
"ts-jest": "28.0.8",
"typescript": "4.8.2"
},
"files": [
"lib/**/*"
]
}