-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "minigen",
"version": "0.0.5",
"description": "A mini static site generator",
"main": "src/index.ts",
"bin": "build/index.js",
"dependencies": {
"@types/chokidar": "^2.1.3",
"@types/commander": "^2.12.2",
"@types/fs-extra": "^9.0.6",
"@types/glob": "^7.1.3",
"@types/handlebars": "^4.1.0",
"@types/http-server": "^0.10.1",
"@types/marked": "^1.2.2",
"@types/node": "^14.14.25",
"chokidar": "^3.5.1",
"commander": "^7.0.0",
"fs-extra": "^9.1.0",
"glob": "^7.1.6",
"gray-matter": "^4.0.2",
"handlebars": "^4.7.6",
"http-server": "^0.12.3",
"marked": "^1.2.9",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oneshadab/minigen.git"
},
"homepage": "https://github.com/oneshadab/minigen",
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"dir-compare": "^3.0.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"ts-jest": "^26.5.1"
},
"scripts": {
"test": "jest",
"serve": "http-server -p 7268 example/out",
"start": "ts-node .",
"clean": "rm -rf build",
"build": "yarn clean && tsc -p tsconfig.build.json"
},
"author": "Shadman Shadab",
"license": "MIT"
}