-
Notifications
You must be signed in to change notification settings - Fork 463
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.23 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.23 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "apollo",
"description": "CLI for apollographql",
"version": "1.1.1",
"author": "opensource@apollographql.com",
"bin": {
"apollo": "./bin/run"
},
"bugs": "https://github.com/apollographql/apollo-cli/issues",
"dependencies": {
"@oclif/command": "^1.4.21",
"@oclif/config": "^1.6.17",
"@oclif/plugin-help": "^1.2.11",
"@oclif/plugin-not-found": "^1.0.9",
"@oclif/plugin-warn-if-update-available": "^1.3.9",
"@types/globby": "^8.0.0",
"@types/lodash": "^4.14.109",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"@types/rimraf": "^2.0.2",
"apollo-codegen-core": "^0.21.0",
"apollo-codegen-flow": "^0.21.0",
"apollo-codegen-flow-legacy": "^0.21.0",
"apollo-codegen-scala": "^0.21.0",
"apollo-codegen-swift": "^0.21.0",
"apollo-codegen-typescript": "^0.21.0",
"apollo-codegen-typescript-legacy": "^0.21.0",
"apollo-link": "^1.2.2",
"apollo-link-http": "^1.5.4",
"chalk": "^2.4.1",
"cli-ux": "^4.3.0",
"decode-html": "^2.0.0",
"env-ci": "^2.1.0",
"git-parse": "^1.0.3",
"git-rev-sync": "^1.12.0",
"glob": "^7.1.2",
"graphql": "^0.13.1",
"graphql-tag": "^2.9.2",
"heroku-cli-util": "^8.0.9",
"listr": "^0.14.1",
"lodash": "^4.17.10",
"node-fetch": "^2.1.2",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"rimraf": "^2.6.2"
},
"devDependencies": {
"@fancy-test/nock": "^0.1.1",
"@oclif/dev-cli": "^1.4.2",
"@oclif/test": "^1.0.6",
"@types/chai": "^4.1.2",
"@types/graphql": "^0.13.1",
"@types/jest": "^22.2.3",
"@types/listr": "^0.13.0",
"@types/nock": "^9.1.3",
"@types/node": "^9.6.11",
"@types/node-fetch": "^1.6.9",
"chai": "^4.1.2",
"husky": "^0.14.3",
"jest": "^22.4.4",
"nock": "^9.2.6",
"prettier": "^1.12.1",
"pretty-quick": "^1.4.1",
"ts-jest": "^22.4.6",
"ts-node": "^5.0.1",
"tslib": "^1.9.0",
"typescript": "^2.8.3",
"memfs": "^2.9.1",
"fs-monkey": "^0.3.3"
},
"precommit": "pretty-quick --staged",
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/oclif.manifest.json"
],
"homepage": "https://github.com/apollographql/apollo-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "apollo",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-warn-if-update-available"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"node_modules",
"lib"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironment": "node"
},
"repository": "apollographql/apollo-cli",
"scripts": {
"clean": "rm -rf lib",
"prebuild": "npm run clean",
"build": "tsc -p .",
"postpack": "rm -f oclif.manifest.json",
"posttest": "tsc -p . --noEmit",
"prepack": "rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme",
"test": "jest",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}