-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
32 lines (32 loc) · 876 Bytes
/
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
{
"name": "teeny-cli",
"version": "0.1.0-beta",
"description": "A very simple static site generator",
"author": "Yakko Majuri",
"main": "cli.js",
"license": "MIT",
"bin": {
"teeny": "cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/yakkomajuri/teeny.git"
},
"scripts": {
"dev:build": "npm run dev && teeny build",
"dev:develop": "npm run dev && teeny develop",
"dev:init": "npm run dev && teeny init",
"dev": "rm teeny-* || true && npm pack && npm i -g teeny-*.tgz -f",
"lint": "prettier --write ."
},
"devDependencies": {
"prettier": "^2.4.1"
},
"dependencies": {
"chokidar": "^3.5.2",
"front-matter": "^4.0.2",
"fs-extra": "^10.0.0",
"jsdom": "^18.0.0",
"marked": "^4.0.10"
}
}