-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 2.31 KB
/
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
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
71
72
73
74
75
76
{
"name": "hugo-installer",
"description": "Installs hugo into your repository.",
"version": "4.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dominique-mueller/hugo-installer"
},
"keywords": [
"hugo",
"gohugo",
"install",
"binary",
"package",
"dependency"
],
"type": "module",
"exports": {
".": {
"import": "./index.js"
}
},
"module": "./index.js",
"types": "./index.d.ts",
"bin": {
"hugo-installer": "./bin/hugo-installer.js"
},
"scripts": {
"build": "npm run build:clean && npm run build:bundle && npm run build:assets",
"build:assets": "copyfiles package.json CHANGELOG.md LICENSE README.md dist",
"build:bundle": "rollup --config rollup.config.js",
"build:clean": "rimraf -r dist",
"generate-hugo-releases-meta": "node --experimental-specifier-resolution=node --loader ts-node/esm ./tools/generate-hugo-releases-meta.ts",
"lint": "eslint index.ts bin/** --max-warnings 0",
"lint:fix": "eslint index.ts bin/** --max-warnings 0 --fix",
"test": "rimraf -r test-output && node dist/bin/hugo-installer --version 0.103.0 --destination test-output/hugo-0.103.0"
},
"dependencies": {
"decompress": "4.2.x",
"del": "7.0.x",
"got": "12.4.x",
"hpagent": "1.0.x",
"object-path": "0.11.x",
"semver": "7.3.x",
"yargs": "17.5.x"
},
"devDependencies": {
"@rollup/plugin-commonjs": "22.0.x",
"@rollup/plugin-json": "4.1.x",
"@rollup/plugin-node-resolve": "14.1.x",
"@rollup/plugin-typescript": "8.5.x",
"@types/decompress": "4.2.x",
"@types/node": "14.18.x",
"@types/object-path": "0.11.x",
"@types/semver": "7.3.x",
"@types/yargs": "17.0.x",
"@typescript-eslint/eslint-plugin": "5.37.x",
"@typescript-eslint/parser": "5.37.x",
"copyfiles": "2.4.x",
"eslint-config-prettier": "8.5.x",
"eslint-plugin-import": "2.26.x",
"eslint-plugin-prettier": "4.2.x",
"eslint-plugin-simple-import-sort": "8.0.x",
"eslint": "8.23.x",
"prettier": "2.7.x",
"rimraf": "3.0.x",
"rollup-plugin-bundle-size": "1.0.x",
"rollup-plugin-node-externals": "5.0.x",
"rollup-plugin-preserve-shebangs": "0.2.x",
"rollup-plugin-typescript2": "0.34.x",
"rollup": "2.79.x",
"ts-node": "10.9.x",
"typescript": "4.8.x"
}
}