-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.09 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
{
"name": "code-owners-report",
"version": "0.5.0",
"description": "Reports metrics on all your files, and rolls them up to owners.",
"license": "MIT",
"repository": "turadg/code-owners-report",
"main": "index.js",
"author": {
"name": "Turadg Aleahmad",
"email": "[email protected]",
"url": "https://github.com/turadg"
},
"engines": {
"node": ">=6"
},
"files": [
"dist",
"index.js"
],
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint src test",
"docs": "documentation readme src --section=API",
"clean": "rimraf dist",
"prebuild": "npm run docs && npm run clean",
"build": "babel src -d dist",
"watch": "npm-watch",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"prepublish": "npm run lint && npm test && npm run build",
"postpublish": "git push origin master --follow-tags"
},
"watch": {
"test": "{src,test}/*.js",
"lint": "{src,test}/*.js",
"build": "src"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [
"codeowners",
"quality",
"metrics",
"report"
],
"dependencies": {
"eslint": "^5.6.0",
"find-up": "^3.0.0",
"ignore": "^5.0.2",
"markdown-table": "^1.1.2",
"mz": "^2.7.0",
"true-case-path": "^1.0.3"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-2": "^6.18.0",
"documentation": "^8.1.2",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-flowtype": "^2.50.1",
"eslint-plugin-flowtype-errors": "^3.6.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"flow-bin": "^0.81.0",
"jest-cli": "^23.6.0",
"npm-watch": "^0.4.0",
"opn-cli": "^3.1.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.1"
}
}