-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.43 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
{
"name": "labelify",
"version": "2.0.0",
"description": "Automate and simplify the creation of labels for your repository.",
"keywords": [
"label",
"labels",
"git",
"repo",
"github",
"gitlab",
"utils"
],
"author": "Itgalaxy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/itgalaxy/labelify.git"
},
"homepage": "https://github.com/itgalaxy/labelify",
"bugs": "https://github.com/itgalaxy/labelify/issues",
"main": "src/index.js",
"bin": "bin/labelify.js",
"dependencies": {
"meow": "^5.0.0",
"resolve-from": "^5.0.0",
"cosmiconfig": "^6.0.0",
"got": "^9.6.0",
"pkg-up": "^3.1.0",
"hosted-git-info": "^3.0.2"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"del-cli": "^3.0.0",
"eslint": "^6.6.0",
"eslint-plugin-ava": "^9.0.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-itgalaxy": "^114.0.0",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-lodash": "^6.0.0",
"eslint-plugin-markdown": "^1.0.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-unicorn": "^12.1.0",
"execa": "^3.2.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"nock": "^11.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"remark-cli": "^7.0.0",
"remark-preset-lint-itgalaxy": "^15.0.0",
"standard-version": "^7.0.0"
},
"scripts": {
"labelify": "node ./bin/labelify --overlap",
"lint:prettier": "prettier --list-different \"{bin,src,__tests__}/**/*.{js,mjs,jsx,md,yml}\" \"*.{js,mjs,jsx,md,yml}\"",
"lint:js": "eslint --cache --report-unused-disable-directives . --ignore-path .gitignore --ext \"js,.mjs,.jsx,.md\"",
"lint:md": "remark . -i .gitignore -f -q",
"lint": "npm-run-all -l -p \"lint:**\"",
"prettify": "npm run lint:prettier -- --write",
"fix:js": "npm run lint:eslint -- --fix",
"fix": "npm-run-all -l prettier -p \"fix:**\"",
"pretest": "npm run lint",
"test:only": "jest --testPathIgnorePatterns fixtures",
"test:coverage": "jest --coverage --testPathIgnorePatterns fixtures",
"test": "npm run test:coverage",
"release": "standard-version"
},
"engines": {
"node": ">= 10.13.0"
},
"files": [
"bin",
"src",
"!**/__tests__/**"
]
}