-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
90 lines (90 loc) · 2.21 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
85
86
87
88
89
90
{
"name": "graphquill",
"displayName": "GraphQuill",
"description": "Welcome to a new era of GraphQL API development.",
"icon": "DOCUMENTATION/graphquill-logo.png",
"publisher": "sproutdeveloping",
"version": "0.16.0",
"repository": {
"type": "git",
"url": "https://github.com/oslabs-beta/GraphQuill.git"
},
"engines": {
"vscode": "^1.39.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.activateGraphQuill",
"onCommand:extension.deactivateGraphQuill",
"onCommand:extension.toggleGraphQuill",
"onCommand:extension.createConfigFile",
"onCommand:extension.showGraphQLSchema"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.activateGraphQuill",
"title": "GraphQuill: Activate"
},
{
"command": "extension.deactivateGraphQuill",
"title": "GraphQuill: Deactivate"
},
{
"command": "extension.toggleGraphQuill",
"title": "GraphQuill: Toggle (Start/Stop)"
},
{
"command": "extension.createConfigFile",
"title": "GraphQuill: Create GraphQuill Config File"
},
{
"command": "extension.showGraphQLSchema",
"title": "GraphQuill: Show the GraphQL Schema"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "npm run parseUnitTest",
"parseUnitTest": "nyc mocha -r ts-node/register __tests__/suite/parser.test.ts"
},
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^10.12.21",
"@types/vscode": "^1.39.0",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mocha": "^6.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.4.1",
"typescript": "^3.3.1",
"vscode-test": "^1.2.0"
},
"dependencies": {
"node-fetch": "^2.6.1"
},
"nyc": {
"extension": [
".ts"
]
}
}