-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) Β· 2.36 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
{
"name": "iamworkingonit",
"description": "Let you colleagues know what you're working on",
"version": "0.1.0",
"author": "iamworkingonit @iamworkingonit",
"bin": {
"workingon": "bin/run"
},
"bugs": "https://github.com/olliswe/iamworkingonit-cli/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-autocomplete": "^0.3.0",
"@oclif/plugin-help": "^3.2.1",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"@types/lodash": "^4.14.168",
"cli-ux": "^5.5.1",
"date-fns": "^2.16.1",
"graphql": "^15.4.0",
"graphql-request": "^3.4.0",
"graphql-tag": "^2.11.0",
"inquirer": "^7.3.3",
"jwt-decode": "^3.1.2",
"keytar": "^7.3.0",
"lodash": "^4.17.20",
"tslib": "^1.14.1"
},
"devDependencies": {
"@graphql-codegen/cli": "1.20.0",
"@graphql-codegen/introspection": "1.18.1",
"@graphql-codegen/typescript": "1.20.0",
"@graphql-codegen/typescript-graphql-request": "^3.0.0",
"@graphql-codegen/typescript-operations": "^1.17.13",
"@oclif/dev-cli": "^1.26.0",
"@types/inquirer": "^7.3.1",
"@types/node": "^10.17.51",
"debug": "^4.3.1",
"env-cmd": "^10.1.0",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"globby": "^10.0.2",
"np": "^7.4.0",
"prettier": "^2.2.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/olliswe/iamworkingonit-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "workingon",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
]
},
"repository": "olliswe/iamworkingonit-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"postpublish": "git push --tags",
"posttest": "echo NO POSTTEST",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md",
"codegen": "graphql-codegen --config codegen.yml",
"dev": "env-cmd -f .env.local ./bin/run",
"release": "np"
},
"types": "lib/index.d.ts"
}