-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
66 lines (66 loc) · 1.7 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
{
"name": "ghost-static-site-generator",
"version": "1.1.4",
"description": "A simple static site generator for ghost",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"start": "http-server ./static -o",
"lint": "eslint src",
"prepublishOnly": "npm run lint; npm run test;",
"release": "release-it",
"preview": "http-server ./static"
},
"bin": {
"gssg": "./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fried-Chicken/ghost-static-site-generator.git"
},
"keywords": [
"ghost",
"static",
"static",
"site",
"blog"
],
"engines": {
"node": ">=12"
},
"author": "Fried-Chicken <Fried-Chicken@users.noreply.github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fried-Chicken/ghost-static-site-generator/issues"
},
"homepage": "https://github.com/Fried-Chicken/ghost-static-site-generator#readme",
"dependencies": {
"http-server": "^13.0.0",
"lodash": "^4.17.11",
"mkdirp": "^ 1.0.4",
"wget-improved": "^3.2.1",
"xml2js": "^0.4.19",
"yargs": "^17.3.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"@types/jest": "^27.4.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^27.4.6",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.4.6",
"release-it": "^14.12.1"
},
"resolutions": {
"boom": "^7.3.0"
}
}