-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.56 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
{
"name": "jo-cli",
"version": "1.0.5",
"description": "Command line code generator that works.",
"bin": {
"jo": "bin/jo.js"
},
"main": "dist/bin.js",
"scripts": {
"test": "echo \"Error: no test specified\"",
"prepublish": "tsc"
},
"keywords": [
"generator",
"templates",
"files",
"nodejs",
"tools",
"cli",
"boilerplate"
],
"author": "Anton Vinogradov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:awinogradov/jo-cli.git"
},
"devDependencies": {
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.3.0",
"@types/brace-expansion": "1.1.0",
"@types/chalk": "2.2.0",
"@types/commander": "2.12.2",
"@types/fs-extra": "9.0.1",
"@types/node": "14.6.1",
"@types/walk": "2.3.0",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"change-case": "5.4.2",
"eslint": "7.7.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "13.2.1",
"prettier": "2.1.1",
"typescript": "4.0.2"
},
"dependencies": {
"brace-expansion": "1.1.11",
"chalk": "4.1.2",
"commander": "6.2.1",
"deepmerge": "4.3.1",
"fs-extra": "9.1.0",
"walk": "2.3.15"
},
"files": [
"bin",
"dist",
"src",
"README.md"
]
}