-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 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
{
"name": "osd-sitegen",
"version": "1.0.2",
"description": "static site generator",
"main": "bin/index.js",
"scripts": {
"test": "jest --",
"coverage": "jest --collectCoverage --",
"prettier": "prettier --write \"./**/*.{md,js}\"",
"prettier-check": "prettier --check \"./**/*.{md,js}\"",
"eslint": "eslint --ignore-path .gitignore .",
"eslint-fix": "eslint --fix --ignore-path .gitignore .",
"lint": "npm run eslint",
"husky": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rclee91/SiteGen.git"
},
"author": "Roxanne Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/rclee91/SiteGen/issues"
},
"homepage": "https://github.com/rclee91/SiteGen#readme",
"bin": {
"osd-sitegen": "./bin/index.js"
},
"dependencies": {
"commander": "^8.2.0",
"remarkable": "^2.0.1"
},
"devDependencies": {
"eslint": "^8.1.0",
"execa": "^5.1.1",
"husky": "^7.0.0",
"jest": "^27.3.1",
"prettier": "2.4.1"
}
}