-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.75 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.75 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
{
"name": "regctl",
"version": "0.1.2",
"description": "Easily install regctl on macOS, linux, and Windows.",
"type": "module",
"exports": {
".": {
"types": "./lib/lib.d.ts",
"import": "./lib/lib.js",
"require": "./lib/lib.cjs"
}
},
"main": "./lib/lib.js",
"types": "./lib/lib.d.ts",
"bin": "./lib/regctl.js",
"scripts": {
"test": "jest --coverage",
"dev": "tsup --watch",
"build": "tsup",
"docs": "typedoc ./src/lib.ts",
"format": "prettier --write '**/*.{js,ts,jsx,tsx,json,yml,yaml,md,html}' --ignore-path .gitignore",
"lint": "eslint .",
"postinstall": "node scripts/postinstall.js && node lib/regctl.js version"
},
"keywords": [
"macos",
"windows",
"linux",
"cli"
],
"author": "JacobLinCool <jacoblincool@gmail.com> (https://github.com/JacobLinCool)",
"license": "MIT",
"files": [
"lib",
"scripts"
],
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"regctl": "workspace:*",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"tsup": "^6.1.3",
"typedoc": "^0.23.8",
"typescript": "^4.7.4"
},
"homepage": "https://github.com/JacobLinCool/node-regctl#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/JacobLinCool/node-regctl.git"
},
"bugs": {
"url": "https://github.com/JacobLinCool/node-regctl/issues"
}
}