-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.87 KB
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
{
"name": "@etermind/alex",
"version": "1.0.1",
"description": "Alex is a easy and small static site generator",
"main": "dist/lib/cli.js",
"bin": {
"alex": "./dist/lib/cli.js"
},
"engines": {
"node": ">=12"
},
"scripts": {
"prebuild": "npx rimraf dist",
"build": "npx tsc --module commonjs",
"prepare": "npm run build",
"watch": "npx tsc-watch --module commonjs",
"lint": "npx tslint --project tsconfig.json -t codeFrame 'lib/**/*.ts' 'test/**/*.ts'"
},
"keywords": [
"static site generator",
"easy",
"simple"
],
"author": "Corentin Ribeyre <corentin.ribeyre@etermind.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/etermind/alex"
},
"dependencies": {
"@types/finalhandler": "^1.1.0",
"@types/inquirer": "^7.3.1",
"@types/lodash": "^4.14.155",
"@types/luxon": "^1.25.0",
"@types/node": "^11.15.14",
"@types/nunjucks": "^3.1.3",
"@types/rimraf": "^3.0.0",
"@types/serve-static": "^1.13.4",
"@types/showdown": "^1.9.3",
"commander": "^5.1.0",
"finalhandler": "^1.1.2",
"fs-extra": "^9.0.1",
"inquirer": "^7.3.3",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"markdown-yaml-metadata-parser": "^2.0.5",
"nunjucks": "^3.2.1",
"rimraf": "^3",
"serve-static": "^1.14.1",
"showdown": "^1.9.1",
"showdown-highlight": "^2.1.4",
"showdown-katex": "^0.8.0",
"yaml": "^1.10.0"
},
"devDependencies": {
"ts-node": "7.x",
"tsc-watch": "1.x",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-language-service": "^0.9.9",
"typedoc": "^0.15.8",
"typescript": "^3.9.5"
}
}