-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "jellybean",
"version": "1.0.10",
"description": "From one small program, you can create an entire website. Jellybean is a static site generator created in Node.js that lets you easily convert your text/markdown files into HTML.",
"main": "src/index.js",
"bin": {
"jellybean": "src/index.js"
},
"keywords": [
"ssg"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch --",
"coverage": "jest --collectCoverage --",
"prettier": "prettier --write .",
"prettier-check": "prettier --check .",
"eslint": "npx eslint .",
"eslint-fix": "eslint --fix .",
"prepare": "husky install"
},
"author": "Leyang Yu",
"license": "MIT",
"dependencies": {
"@types/jest": "^27.0.2",
"execa": "^5.1.1",
"jsonfile": "^6.1.0",
"markdown-it": "^12.2.0",
"yargs": "^17.1.1"
},
"devDependencies": {
"eslint": "^8.1.0",
"eslint-plugin-jest": "^25.2.4",
"husky": "^7.0.4",
"jest": "^27.3.1",
"prettier": "2.4.1"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyu4321/jellybean.git"
},
"bugs": {
"url": "https://github.com/lyu4321/jellybean/issues"
},
"homepage": "https://github.com/lyu4321/jellybean#readme"
}