-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 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
62
63
64
65
66
{
"name": "emmet-gen",
"version": "1.7.3",
"description": "emmet-gen is a CLI tool for generating directories and files with emmet inspired syntax.",
"main": "dist/main.min.js",
"type": "module",
"scripts": {
"precommit": "",
"prepare": "husky install",
"start": "node ./dist/main.min.js",
"test:gh": "node ./dist/main.min.js init test && vitest",
"test": "vitest",
"prettier": "npx prettier --write ./src",
"lint:fix": "eslint --ext .ts --ignore-path .gitignore . --fix",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"build": "npx tsc && rollup --config"
},
"keywords": [
"generate",
"scaffolding",
"boilerplate",
"skeleton",
"generate-code",
"custom-files",
"generator",
"emmet",
"cli",
"command",
"command-line",
"template"
],
"author": "nick3point5",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.3",
"rollup": "^4.9.6",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.1"
},
"dependencies": {
"commander": "^11.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nick3point5/emmet-gen.git"
},
"bugs": {
"url": "https://github.com/nick3point5/emmet-gen/issues"
},
"homepage": "https://github.com/nick3point5/emmet-gen#readme",
"husky": {
"hooks": {
"pre-commit": "if branch is dev; then npm run precommit:minor;"
}
},
"bin": "./dist/main.min.js"
}