-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "stacy",
"version": "2.0.0",
"description": "Automatic static website generator and publisher for Contentful CMS and AWS.",
"homepage": "https://github.com/boylesoftware/stacy",
"bugs": {
"url": "https://github.com/boylesoftware/stacy/issues"
},
"license": "MIT",
"author": "Lev Himmelfarb <[email protected]>",
"files": [
"lib"
],
"bin": "./lib/cli.js",
"repository": "github:boylesoftware/stacy",
"scripts": {
"lint": "eslint .",
"preversion": "npm run lint",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@contentful/rich-text-html-renderer": "^13.4.0",
"@contentful/rich-text-types": "^13.4.0",
"archiver": "^3.1.1",
"chokidar": "^3.2.2",
"commander": "^3.0.2",
"contentful": "^7.10.0",
"dotenv": "^8.2.0",
"find-up": "^4.1.0",
"fs-extra": "^8.1.0",
"handlebars": "^4.4.5",
"junk": "^3.1.0",
"marked": "^0.7.0",
"mime": "^2.4.4"
},
"devDependencies": {
"eslint": "^6.5.1"
},
"engines": {
"node": ">=10.16.3"
}
}