-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.24 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "janak",
"version": "1.7.2",
"description": "Create vue package with a breeze",
"bin": "cli.js",
"files": [
"cli.js",
"prompts.js",
"saofile.js",
"template"
],
"scripts": {
"test": "ava",
"test:snapshot": "ava --update-snapshots",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lintfix": "npm run lint:eslint:fix && npm run lint:prettier:fix",
"lint:eslint": "eslint \"{,!(node_modules|template)/**/}*.{js,cjs,ts}\"",
"lint:eslint:fix": "eslint --fix \"{,!(node_modules|template)/**/}*.{js,cjs,ts}\"",
"lint:prettier": "prettier --check \"{,!(node_modules|template)/**/}*.{js,cjs,ts}\"",
"lint:prettier:fix": "prettier --write \"{,!(node_modules|template)/**/}*.{js,cjs,ts}\"",
"lint-staged": "lint-staged",
"release": "shipjs prepare",
"release:auto": "shipjs prepare --yes",
"release:dry": "shipjs prepare --dry-run",
"prepare": "husky install"
},
"dependencies": {
"cac": "^6.7.14",
"chalk": "^4.1.2",
"lodash": "^4.17.21",
"sao": "^1.7.1",
"validate-npm-package-name": "^5.0.0"
},
"devDependencies": {
"@ava/babel": "^2.0.0",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.62.0",
"@vinayakkulkarni/prettier-config-vue": "^1.0.0",
"ava": "^3.15.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsdoc": "^46.2.6",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"shipjs": "^0.26.3"
},
"keywords": [
"Vue Scaffolding",
"Vue Scaffolding Generator",
"Generator"
],
"author": {
"name": "Vinayak Kulkarni",
"email": "[email protected]",
"url": "https://vinayakkulkarni.dev"
},
"license": "MIT",
"repository": {
"url": "[email protected]:vinayakkulkarni/janak.git",
"type": "git"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"private": false,
"sideEffects": false,
"bugs": {
"url": "https://github.com/vinayakkulkarni/janak/issues"
},
"homepage": "https://github.com/vinayakkulkarni/janak#readme"
}