-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.5 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
{
"name": "code-story",
"version": "0.4.1",
"description": "Get your code activity log for standup from git",
"author": "Alexander Ivankov",
"homepage": "https://github.com/MoonW1nd/codestory#code-story-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/MoonW1nd/codestory.git"
},
"bugs": {
"url": "https://github.com/MoonW1nd/codestory/issues"
},
"license": "MIT",
"keywords": [
"git",
"standup",
"meeting",
"productivity",
"standup-report",
"team",
"agile",
"cli",
"log",
"daily"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"code-story": "./lib/index.js"
},
"scripts": {
"start": "node ./lib/index.js",
"dev:watch": "watch 'npm run build && npm run start' src",
"create": "npm run build && npm run test",
"prepare": "npm run build",
"build": "tsc -p .",
"test": "echo \"Error: no test specified\" && exit 1",
"test:local": "sudo npm i -g && cstory",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"cm": "npx git-cz",
"release": "standard-version"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"chalk": "^4.1.0",
"chrono-node": "^2.1.8",
"clear": "^0.1.0",
"cosmiconfig": "^7.0.0",
"figlet": "^1.4.0",
"gitlog": "^4.0.0",
"module-alias": "^2.2.2",
"path": "^0.12.7",
"yargs": "^15.4.0"
},
"devDependencies": {
"@commitlint/cli": "^10.0.0",
"@commitlint/config-conventional": "^10.0.0",
"@types/clear": "^0.1.0",
"@types/figlet": "^1.2.0",
"@types/node": "^14.0.14",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^3.5.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"standard-version": "^9.0.0",
"typescript": "^3.9.6",
"watch": "^1.0.2"
},
"files": [
"lib/**/*"
],
"_moduleAliases": {
"src": "lib"
}
}