-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
56
57
58
59
60
61
{
"name": "siteit",
"version": "1.0.6",
"description": "CLI tool that converts user entered data via terminal into static website",
"main": "./build/index.js",
"type": "module",
"bin": {
"siteit": "./build/index.js"
},
"scripts": {
"lint": "npx eslint .",
"lint:fix": "npm run lint -- --fix",
"prettier:check": "npx prettier --check .",
"prettier:format": "npx prettier --write .",
"pre-commit": "npx lint-staged && pretty-quick --staged",
"build": "babel ./src -d build",
"start": "npm run build && node ./build/index.js -v",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"prepare": "husky install"
},
"keywords": [
"SSG",
"generator",
"site",
"staticsite",
"mdtohtml",
"md2html",
"markdownToHtml",
"file2html",
"convert"
],
"author": "Taimoor Dawami",
"license": "MIT",
"dependencies": {
"@babel/eslint-parser": "^7.19.1",
"chalk": "^4.1.2",
"highlight.js": "^11.6.0",
"pretty": "^2.0.0",
"remarkable": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/node": "^7.19.1",
"@babel/plugin-proposal-throw-expressions": "^7.18.6",
"@babel/plugin-syntax-import-assertions": "^7.18.6",
"@babel/preset-env": "^7.19.4",
"@jest/globals": "^29.3.1",
"babel-plugin-import": "^1.13.5",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.0",
"jest": "^29.3.1",
"jest-esm-transformer": "^1.0.0",
"lint-staged": "^13.0.3",
"prettier": "2.8.0",
"pretty-quick": "^3.1.3"
}
}