-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 1.96 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
78
79
80
81
82
83
84
85
{
"name": "@happy-coders/fun-cli",
"version": "1.0.0-beta.2",
"description": "Be your project management more fun!",
"publishConfig": {
"access": "public"
},
"keywords": [
"fun",
"cli",
"project-managment",
"task-automator",
"project-setup",
"happy-coders",
"funny-cli",
"typescript",
"jest"
],
"engines": {
"node": ">= 10.13.0",
"npm": ">= 6.11.0"
},
"main": "bin/fun.js",
"preferGlobal": true,
"bin": {
"fun": "bin/fun.js"
},
"files": [
"bin",
"lib"
],
"scripts": {
"build": "tsc",
"lint": "eslint 'src/**/*.ts' --fix",
"start": "node bin/fun.js",
"test": "jest --config jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/happy-coders/fun-cli.git"
},
"contributors": [
"Samuel Martins <sam.martins.dev@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/happy-coders/fun-cli/issues"
},
"homepage": "https://github.com/happy-coders/fun-cli#readme",
"dependencies": {
"chalk": "4.1.0",
"commander": "6.2.0",
"execa": "^4.1.0",
"inquirer": "7.3.3",
"lodash": "^4.17.20",
"node-emoji": "^1.10.0"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-angular": "11.0.0",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.164",
"@types/node": "12.12.31",
"@types/node-emoji": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint": "7.12.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.22.1",
"husky": "4.3.0",
"jest": "26.6.1",
"jest-extended": "^0.11.5",
"prettier": "2.1.2",
"ts-jest": "26.4.3",
"ts-node": "9.0.0",
"typescript": "^3.6.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn test"
}
}
}