-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.74 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
{
"name": "fraternal",
"version": "0.1.2",
"description": "🐑 A framework for creating clone-able project templates that still compile",
"main": "dist/index.js",
"author": "John Kahn",
"license": "MIT",
"scripts": {
"dev": "npm run build -- --watch --preserveWatchOutput",
"start": "node dist/cli.js",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@root/walk": "^1.1.0",
"chalk": "^4.1.2",
"cli-spinners": "^2.6.0",
"clime": "^0.5.14",
"fs-extra": "^10.0.0",
"gitignore-parser": "0.0.2",
"inquirer": "^8.1.2",
"klaw": "^3.0.0",
"simple-git": "^2.44.0",
"spinnies": "^0.5.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.12",
"@types/gitignore-parser": "0.0.0",
"@types/inquirer": "^7.3.3",
"@types/klaw": "^3.0.2",
"@types/node": "^16.7.1",
"@types/readline-sync": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-plugin-import": "^2.24.1",
"prettier": "^2.3.2",
"readline-sync": "^1.4.10",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"bin": {
"fraternal": "dist/cli.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/fraternal-cli/fraternal.git"
},
"bugs": {
"url": "https://github.com/fraternal-cli/fraternal/issues"
},
"homepage": "https://github.com/fraternal-cli/fraternal#readme",
"keywords": [
"fraternal",
"template",
"boilerplate",
"yeoman",
"cli",
"cookiecutter",
"clone"
]
}