-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.27 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
53
54
55
{
"name": "nlb-ssg",
"version": "1.0.0",
"description": "A CLI used to create html files from text files",
"main": "src/index.js",
"bin": {
"create-html": "bin/create-html"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jasmine",
"prepare": "husky install"
},
"keywords": [
"cli",
"create-html"
],
"author": "Amasia Nalbandian",
"license": "MIT",
"dependencies": {
"arg": "^5.0.1",
"chalk": "^4.1.2",
"esm": "^3.2.25",
"fs-extra": "^10.0.0",
"inquirer": "^8.1.5",
"markdown-it": "^12.2.0",
"ncp": "^2.0.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^7.0.4",
"jasmine": "^3.10.0",
"lint-staged": "^11.2.6",
"prettier": "2.4.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AmasiaNalbandian/static-site-generator.git"
},
"bugs": {
"url": "https://github.com/AmasiaNalbandian/static-site-generator/issues"
},
"homepage": "https://github.com/AmasiaNalbandian/static-site-generator#readme"
}