This repository has been archived by the owner on Jul 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
81 lines (81 loc) · 2.57 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
{
"_comments": [
"Modifications to",
"https://github.com/jsynowiec/node-typescript-boilerplate/blob/32e3b53d62933438291a14e1d09904aed1df19d0/package.json",
"Copyright (c) 2017 Target Brands, Inc."
],
"name": "graphql-liftoff",
"version": "1.0.2",
"description": "generates GraphQL schema language from API specifications and more",
"engineStrict": true,
"engines": {
"node": ">= 6.9.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"jest": "~23.5.0",
"rimraf": "~2.6.2",
"tslint": "~5.11.0",
"tsutils": "~3.0.0"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"install": "tsc",
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint -t stylish --type-check --project \"tsconfig.json\"",
"pretest": "tslint -t stylish --type-check --project \"tsconfig.json\"",
"test": "jest --no-cache --coverage",
"test-ci": "jest --ci --no-cache --coverage --coverageReporters lcov",
"test-only": "jest --no-cache",
"test:watch": "jest --watch",
"coverage": "open coverage/lcov-report/index.html",
"start": "node build/bin/cli.js"
},
"author": "Stephen Radachy <[email protected]>",
"contributors": [
"Sean C Ryan <[email protected]>",
"Tim Schoenheider <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/target/graphql-liftoff.git"
},
"bugs": {
"url": "https://github.com/target/graphql-liftoff/issues"
},
"homepage": "https://github.com/target/graphql-liftoff#readme",
"dependencies": {
"@types/jest": "~23.3.1",
"@types/js-yaml": "^3.9.1",
"@types/lodash": "^4.14.116",
"@types/node": "~10.9.4",
"@types/pluralize": "^0.0.29",
"@types/request": "^2.0.4",
"babel-jest": "^23.4.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-node6": "^11.0.0",
"js-yaml": "^3.10.0",
"lodash": "^4.17.10",
"oas-raml-converter": "1.1.38",
"pluralize": "^7.0.0",
"request": "^2.83.0",
"tslib": "~1.9.3",
"typescript": "~3.0.3"
},
"bin": {
"graphql-liftoff": "./bin/graphql-liftoff",
"gqllo": "./bin/graphql-liftoff"
},
"keywords": [
"graphql",
"liftoff",
"schema",
"definition",
"type",
"generator",
"swagger"
],
"main": "build/main.js"
}