-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) Β· 1.37 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
{
"name": "labman",
"version": "1.0.1",
"description": "π¨πΌβπ¬ github label manager cli",
"keywords": [
"github",
"issues",
"labels",
"octokit",
"javascript",
"nodejs",
"cli"
],
"homepage": "https://npmjs.com/package/labman",
"bugs": {
"url": "https://github.com/bradgarropy/labman-cli/issues"
},
"license": "MIT",
"author": {
"name": "Brad Garropy",
"email": "bradgarropy@gmail.com",
"url": "https://bradgarropy.com"
},
"bin": {
"labman": "src/cli/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bradgarropy/labman-cli"
},
"scripts": {
"start": "node src/cli/index.js",
"dev": "npm run test -- --watch",
"test": "jest --passWithNoTests --silent --color"
},
"dependencies": {
"@octokit/rest": "^16.43.1",
"chalk": "^3.0.0",
"conf": "^6.2.0",
"yargs": "^15.1.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-bradgarropy": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"jest": "^25.1.0",
"prettier": "^1.19.1"
},
"peerDependencies": {}
}