-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 864 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 864 Bytes
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
{
"name": "git-scrum",
"version": "1.3.0",
"description": "Output your commits to console",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .js",
"test": "jest"
},
"keywords": [
"git",
"scrum"
],
"author": "lg",
"license": "ISC",
"devDependencies": {
"eslint": "^8.26.0",
"eslint-plugin-jest": "^27.1.3",
"jest": "^26.4.2"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^9.4.1",
"moment": "^2.29.0"
},
"bin": {
"git-scrum": "./index.js"
},
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"commonjs": true,
"es2021": true,
"jest/globals": true
},
"extends": "eslint:recommended",
"overrides": [],
"parserOptions": {
"ecmaVersion": "latest"
},
"plugins": [
"jest"
],
"rules": {}
}
}