-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
36 lines (36 loc) · 866 Bytes
/
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
{
"name": "mac-ca",
"version": "3.1.0",
"description": "Get Mac OS Root certificates",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./register": "./dist/register.js"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/jfromaniello/mac-ca.git"
},
"scripts": {
"test": "mocha --reporter spec --require ts-node/register test/**",
"lint": "eslint .",
"prepare": "tsc"
},
"author": "José F. Romaniello <jfromaniello@gmail.com> (https://joseoncode.com)",
"license": "BSD-3-Clause",
"dependencies": {
"node-forge": "^1.3.1",
"undici": "^6.16.1"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node-forge": "^1.3.1",
"eslint": "^8.22.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}