forked from shinnn/mkcert-prebuilt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.25 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.25 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
64
65
66
67
68
69
70
{
"name": "mkcert-prebuilt",
"version": "1.0.1",
"description": "An installer for mkcert prebuilt binary",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"repository": "shinnn/mkcert-prebuilt",
"license": "ISC",
"scripts": {
"install": "node install.js",
"pretest": "eslint .",
"test": "nyc node test/test.js",
"prepublishOnly": "node prepublish.js"
},
"files": [
"[0-9].[0-9].[0-9]",
"index.js",
"install.js"
],
"bin": {
"mkcert": "1.2.0"
},
"keywords": [
"mkcert",
"prebuilt",
"install",
"installation",
"binary",
"go",
"golang",
"native",
"ca",
"certificate",
"development",
"local",
"secure",
"pem",
"cross-platform"
],
"dependencies": {
"arch": "^2.1.1",
"load-from-cwd-or-npm": "^3.0.1",
"platform-name": "^1.0.0",
"reject-unsatisfied-npm-version": "^1.0.0"
},
"devDependencies": {
"@shinnn/eslint-config": "^6.9.2",
"eslint": "^5.15.3",
"nock": "^10.0.6",
"nyc": "^13.3.0",
"nyc-config-common": "^1.0.1",
"pretend-platform": "^3.0.0",
"tape": "^4.10.1"
},
"eslintConfig": {
"extends": "@shinnn",
"overrides": [
{
"files": [
"install.js"
],
"rules": {
"no-process-exit": "off"
}
}
]
},
"nyc": {
"extends": "nyc-config-common"
}
}