-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
executable file
·70 lines (70 loc) · 1.62 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
{
"name": "graphql-cli-generate-fragments",
"version": "1.4.1",
"description": "Plugin for graphql-cli to generate fragments",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc -d",
"pretest": "npm run build",
"lint": "tslint src/**/*.ts",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/develomark/graphql-cli-generate-fragments.git"
},
"keywords": [
"graphql",
"graphql-cli",
"graphql-cli-generate-fragments",
"apollo",
"prisma",
"graphcool"
],
"author": "Mark Petty <develomark@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^5.0.2",
"@types/inquirer": "0.0.41",
"@types/node": "^9.6.5",
"@types/yargs": "^11.0.0",
"contributor": "^0.1.25",
"graphql-config": "^2.0.1",
"semantic-release": "^15.1.7",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
},
"release": {
"branch": "master"
},
"dependencies": {
"@types/graphql": "^0.13.1",
"chalk": "2.3.0",
"fs-extra": "^5.0.0",
"graphql": "^0.13.2",
"graphql-import": "^0.6.0",
"lodash": "^4.17.5"
},
"contributors": [
{
"name": "Mark Petty",
"email": null,
"url": "https://github.com/develomark",
"contributions": 1,
"additions": 23,
"deletions": 0,
"hireable": null
},
{
"name": "Paul Csapak",
"email": null,
"url": "https://github.com/plck",
"contributions": 1,
"additions": 1,
"deletions": 1,
"hireable": true
}
]
}