forked from apollographql/apollo-tooling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "apollo-codegen",
"version": "0.4.0",
"description": "Generate client code based on a GraphQL schema and query documents",
"main": "./lib/index.js",
"bin": "./lib/cli.js",
"scripts": {
"compile": "babel src --out-dir lib",
"watch": "babel src --out-dir lib --watch",
"prepublish": "npm run compile",
"test": "mocha --recursive --compilers js:babel-register",
"regenerate-expected-output": "apollo-codegen generate test/starwars/HeroAndFriendsNames.graphql --schema test/starwars/schema.json --output test/swift/expectedOutput/HeroAndFriendsNamesAPI.swift"
},
"repository": {
"type": "git",
"url": "apollostack/apollo-codegen"
},
"author": "Martijn Walraven <martijn@martijnwalraven.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-subset": "^1.3.0",
"common-tags": "^1.3.0",
"glob": "^7.0.5",
"mocha": "^2.5.3"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"change-case": "^3.0.0",
"graphql": "^0.7.0",
"inflected": "^1.1.7",
"mkdirp": "^0.5.1",
"node-fetch": "^1.5.3",
"yargs": "^5.0.0"
}
}