-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 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
78
79
80
81
82
83
{
"name": "happy-cli-tool",
"version": "1.0.0",
"description": "npm cli tool",
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "cross-env rm -rf es lib",
"compile": "lerna run --sc",
"lint": "eslint \"packages/**/*.js\" --fix --format codeframe",
"lint-staged": "lint-staged",
"prettier": "prettier -c --write \"**/*.{js,md,json}\"",
"test": "jest --forceExit --detectOpenHandles --passWithNoTests --config jest.config.json"
},
"files": [
"bin"
],
"bin": {
"happy": "./bin/happy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buyan302/happy-cli-tool.git"
},
"keywords": [
"cli",
"tool",
"npm"
],
"author": "buyan302",
"license": "ISC",
"bugs": {
"url": "https://github.com/buyan302/happy-cli-tool/issues"
},
"homepage": "https://github.com/buyan302/happy-cli-tool#readme",
"lint-staged": {
"**/*.js": [
"npm run lint",
"git add"
],
"**/*.{md,json}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run test && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-publish": "npm run build"
}
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.5",
"jest-cli": "^26.6.3",
"lerna": "^3.18.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}