This repository has been archived by the owner on Apr 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.71 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
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "msgboi",
"version": "0.4.0",
"description": "send beautiful slack notifications from gitlab events",
"author": "Caian R. Ertl <hi@caian.org>",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/caian-org/msgboi.git"
},
"bugs": {
"url": "https://github.com/caian-org/msgboi/issues"
},
"homepage": "https://github.com/caian-org/msgboi#readme",
"scripts": {
"gen": "node .bin/gen.js",
"bundle": "webpack",
"bundle:aws": "sh .bin/bundle.sh aws",
"bundle:server": "sh .bin/bundle.sh server",
"bump:dev": "ncu --upgrade --dep dev --target minor",
"bump:prod": "ncu --upgrade --dep prod --target minor",
"bump:all": "npm run bump:dev && npm run bump:prod",
"check:lint": "eslint --format=codeframe 'src/**/*.js'",
"check:style": "standard",
"check:duplicated": "jscpd",
"check:all": "npm run check:lint && npm run check:style && npm run check:duplicated",
"fix:style": "npm run prettier-fix & npm run standard-fix",
"prettier-fix": "prettier --no-semi --print-width 100 --single-quote --trailing-comma none --write 'src/**/*.js'",
"standard-fix": "standard --fix src",
"clean": "rm -rf dist report",
"commit": "cz",
"prepare": "husky install"
},
"standard": {
"parser": "@babel/eslint-parser"
},
"eslintIgnore": [
"bundle",
"dist",
"report"
],
"lint-staged": {
"src/**/*.js": [
"npm run prettier-fix",
"npm run standard-fix"
]
},
"jscpd": {
"pattern": "src/**/*.js",
"threshold": 5,
"reporters": [
"html",
"console"
],
"ignore": [
"report"
],
"absolute": true,
"gitignore": true
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"mustache": "^4.2.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-modules-commonjs": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"babel-loader": "^8.2.4",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.12.0",
"eslint-config-standard": "^16.0.3",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "6.0.0",
"husky": "^7.0.4",
"js-yaml": "^4.1.0",
"jscpd": "^3.4.5",
"lint-staged": "^12.3.7",
"nodemon": "^2.0.15",
"npm-check-updates": "^12.5.4",
"prettier": "^2.6.1",
"standard": "^16.0.4",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
}
}