-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 944 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 944 Bytes
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
{
"name": "gql2hx",
"version": "0.0.28",
"description": "Convert GraphQL schema to Haxe definitions",
"perferGlobal": true,
"license": "MIT",
"author": {
"name": "Jeff Ward",
"email": "jeff.ward@wootmath.com",
"url": "https://www.wootmath.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcward/haxe-graphql.git"
},
"bugs": {
"url": "https://github.com/jcward/haxe-graphql/issues"
},
"bin": {
"gql2hx": "./dist/index.js"
},
"main": "dist/index.js",
"dependencies": {
"commander": "^2.15.1",
"graphql": "^14.3.0"
},
"devDependencies": {
"@types/node": "^10.1.2"
},
"scripts": {
"build": "haxe build.hxml && cp src/*.js ./dist/",
"debug": "npm run build && node --nolazy --inspect-brk=13729 src/index.js",
"test": "npm run build && node dist/index.js -i test/StarWarsTest.gql -o .tmp/StarWars.hx",
"prepare": "npm run build"
}
}