-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "jun-ssg",
"version": "1.0.0",
"description": "Open Source Project 0.1",
"main": "src/app.js",
"bin": {
"jun-ssg": "./src/app.js"
},
"scripts": {
"start": "node src/app.js",
"test": "jest",
"test:cover": "jest --coverage",
"prettier": "prettier --write \"./**/*.{md,js}\"",
"prettier-check": "prettier --check \"./**/*.{md,js}\"",
"eslint": "eslint --ignore-path .gitignore .",
"eslint-fix": "eslint --fix --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/juuuuuuun/jun-ssg.git"
},
"author": "Jun Song",
"license": "MIT",
"bugs": {
"url": "https://github.com/juuuuuuun/jun-ssg/issues"
},
"homepage": "https://github.com/juuuuuuun/jun-ssg#readme",
"dependencies": {
"chalk": "^4.1.2",
"prettier": "^2.4.1",
"yargs": "^17.1.1"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"eslint": "^8.1.0",
"jest": "^27.3.1"
},
"keywords": [
"text",
"html",
"convertor",
"ssg"
]
}