-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 1.99 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
{
"name": "gitpair",
"version": "1.5.4",
"license": "MIT",
"engines": {
"node": ">=14"
},
"author": "Benoit d'Oncieu <[email protected]>",
"description": "Allow you to commit with more than one person, e.g. Pair programming or Mob programming.",
"homepage": "https://github.com/bdo/gitpair.git",
"repository": {
"type": "git",
"url": "https://github.com/bdo/gitpair.git"
},
"keywords": [
"git",
"pair-programming",
"mob-programming"
],
"bugs": {
"url": "https://github.com/bdo/gitpair.git/issues"
},
"main": "./src/index.js",
"bin": {
"gitpair": "./bin/gitpair.js",
"git-pair": "./bin/gitpair.js"
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "webpack --mode production",
"watch": "yarn build --watch",
"lint": "eslint .",
"test": "jest",
"prepare": "husky install"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"setupFiles": [
"./src/testSetup"
]
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/register": "^7.16.0",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"babel-loader": "^9.1.2",
"babel-plugin-source-map-support": "^2.1.3",
"chalk": "^4.1.2",
"clipboardy": "^3.0.0",
"core-js": "^3.19.1",
"debug": "^4.3.2",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^27.2.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^29.2.1",
"lint-staged": "^13.0.3",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.2",
"semantic-release": "^19.0.2",
"webpack": "^5.64.3",
"webpack-cli": "^5.0.1"
}
}