This repository has been archived by the owner on Oct 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.55 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
{
"name": "@coderbyheart/contentful-static-website-generator",
"version": "0.0.0-development",
"description": "A static website generator using Contentful as the CMS",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "standard",
"precommit": "npm run lint",
"commitmsg": "validate-commit-msg",
"prepare": "npm run snyk-protect && make dist",
"snyk-protect": "snyk protect"
},
"bin": {
"cswg": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/coderbyheart/contentful-static-website-generator.git"
},
"keywords": [
"static",
"website",
"generator",
"contentful"
],
"author": "Markus Tacker <m@coderbyheart.com> | https://coderbyheart.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/coderbyheart/contentful-static-website-generator/issues"
},
"homepage": "https://github.com/coderbyheart/contentful-static-website-generator#readme",
"dependencies": {
"commander": "^2.9.0",
"contentful": "^4.1.2",
"glob": "^7.1.1",
"html-minifier": "^3.5.1",
"moment": "^2.18.1",
"showdown": "^1.9.1",
"snyk": "^1.316.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"husky": "<2.0.0",
"semantic-release": "^15.6.0",
"standard": "^11.0.1",
"validate-commit-msg": "^2.10.1"
},
"files": [
"dist",
"src",
"README.md"
],
"engines": {
"node": ">=6.9.0"
},
"snyk": true
}