-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.44 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
{
"name": "@datenknoten/ts-ssg",
"version": "0.7.2",
"description": "A static site generator using typescript, react and marked",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"private": false,
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "tslint -p tsconfig.json",
"check-sources": "npm run lint && npm run test",
"release:major": "npm run check-sources && changelog -M && git add CHANGELOG.md && git commit --no-verify -m \"updated CHANGELOG.md\" && npm version major && git push origin && git push origin --tags",
"release:minor": "npm run check-sources && changelog -m && git add CHANGELOG.md && git commit --no-verify -m \"updated CHANGELOG.md\" && npm version minor && git push origin && git push origin --tags",
"release:patch": "npm run check-sources && changelog -p && git add CHANGELOG.md && git commit --no-verify -m \"updated CHANGELOG.md\" && npm version patch && git push origin && git push origin --tags",
"test": "node -r ts-node/register files/run --config example/settings.json"
},
"author": "Tim Schumacher",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/datenknoten/ts-ssg"
},
"bugs": {
"url": "https://github.com/datenknoten/ts-ssg/issues"
},
"bin": {
"ts-ssg": "./files/run"
},
"oclif": {
"bin": "site-generator"
},
"dependencies": {
"@oclif/command": "^1.5.11",
"@oclif/config": "^1.12.9",
"@oclif/plugin-help": "^2.1.6",
"@types/cheerio": "0.22.11",
"@types/fs-extra": "5.0.5",
"@types/mkdirp": "0.5.2",
"@types/prismjs": "1.9.1",
"@types/react": "16.8.6",
"@types/react-dom": "16.8.2",
"cheerio": "1.0.0-rc.2",
"feed": "2.0.2",
"fs-extra": "7.0.1",
"gray-matter": "4.0.2",
"html-to-react": "1.3.4",
"marked": "^0.6.1",
"mkdirp": "0.5.1",
"moment": "2.24.0",
"prismjs": "1.15.0",
"react": "16.8.3",
"react-dom": "^16.8.3",
"read-directory": "3.0.1",
"typescript-logging": "0.6.3"
},
"devDependencies": {
"@commitlint/cli": "7.5.2",
"@commitlint/config-conventional": "7.5.0",
"@datenknoten/tslint-config": "^0.2.0",
"generate-changelog": "1.7.1",
"husky": "1.3.1",
"ts-node": "^8.0.2",
"tslint-language-service": "0.9.9",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-push": "npm run check-sources"
}
}
}