forked from alkurbatov/observatory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.15 KB
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
{
"name": "observatory",
"version": "0.0.1",
"description": "Project statistics processing for Jira",
"main": "src/index.js",
"scripts": {
"mine": "node src/mine.js",
"plot": "rm -rf dist && mkdir dist && node src/export.js && Rscript plot/main.R",
"lint": "eslint ./bin ./src ./test --color -f table",
"test": "jest",
"test:coverage": "jest --coverage"
},
"author": "Alexander Kurbatov",
"license": "GPL-3.0",
"dependencies": {
"chalk": "^2.4.2",
"columnify": "^1.5.4",
"commander": "^3.0.2",
"config": "^3.1.0",
"debug": "^4.2.0",
"jira.js": "^1.6.2",
"json2csv": "^5.0.1",
"lowdb": "^1.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-jest": "^3.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.16.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.6.3",
"prettier": "^2.0.5"
}
}