-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.01 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.01 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
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
{
"name": "graphql-usage",
"description": "A tool for refactoring GraphQL APIs",
"version": "0.0.0-semantically-released",
"author": " @CDThomas",
"bin": {
"graphql-usage": "./bin/run"
},
"bugs": "https://github.com/CDThomas/graphql-usage/issues",
"dependencies": {
"@babel/parser": "^7.4.5",
"@babel/traverse": "^7.5.5",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"express": "^4.17.1",
"fast-glob": "^3.0.4",
"graphql": "^14.4.2",
"listr": "^0.14.3",
"open": "^6.4.0",
"ramda": "^0.26.1",
"tslib": "^1",
"typescript": "^3.6.3"
},
"devDependencies": {
"@babel/types": "^7.4.4",
"@oclif/test": "^1.2.4",
"@oclif/tslint": "^3",
"@types/express": "^4.17.1",
"@types/graphql": "^14.2.2",
"@types/jest": "^24.0.13",
"@types/listr": "^0.14.2",
"@types/node": "^12.0.8",
"@types/nodegit": "^0.24.8",
"@types/ramda": "^0.26.15",
"chai": "^4.2.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.0.2",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"semantic-release": "^15.13.24",
"ts-jest": "^24.0.2",
"ts-node": "^8",
"tslint": "^5",
"tslint-config-prettier": "^1.18.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"bin",
"lib",
"build"
],
"homepage": "https://github.com/CDThomas/graphql-usage",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "graphql-usage"
},
"repository": "CDThomas/graphql-usage",
"scripts": {
"build": "rm -rf lib && tsc -b && yarn ui:build && yarn ui:copy",
"ui:build": "cd ./graphql-usage-ui && rm -rf build && yarn build",
"ui:copy": "rm -rf ./build && cp -R ./graphql-usage-ui/build ./build",
"posttest": "tslint -p . -t stylish",
"test": "jest",
"test:watch": "jest --watch",
"cm": "git-cz"
},
"types": "lib/index.d.ts",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}