-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
79 lines (79 loc) · 2.13 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
{
"name": "graphql-s2s",
"version": "0.22.0",
"description": "Transpile an enriched GraphQL string schema (e.g. support for metadata, inheritance, generic types, ...) into the standard string schema understood by graphql.js and the Apollo server client.",
"main": "./src/graphqls2s.js",
"scripts": {
"build": "WEBPACK_ENV=build webpack",
"dev": "WEBPACK_ENV=dev webpack",
"lint": "eslint src/ test/ --fix",
"push": "git push --follow-tags origin master && npm publish",
"rls": "standard-version --release-as",
"test": "mocha ./test/node/*.js",
"test:dev": "MOCHA_ENV=dev mocha ./test/node/*.js",
"v": "node -e \"console.log(require('./package.json').version)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicolasdao/graphql-s2s.git"
},
"keywords": [
"graphql",
"schema",
"transpiler",
"metadata",
"inheritance",
"generic",
"types",
"neap"
],
"author": "Nicolas Dao",
"contributors": [
{
"name": "Nicolas Dao",
"email": "[email protected]",
"url": "https://github.com/nicolasdao"
},
{
"name": "Brendan Johnson",
"email": "[email protected]",
"url": "https://github.com/BrendanJohnson"
},
{
"name": "Boris Berak",
"email": "[email protected]",
"url": "https://github.com/bberak"
},
{
"name": "Pankaj Parkar",
"email": "[email protected]",
"url": "https://github.com/pankajparkar"
}
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nicolasdao/graphql-s2s/issues"
},
"homepage": "https://github.com/nicolasdao/graphql-s2s#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"graphql": "^0.11.7",
"lodash": "^4.17.21",
"shortid": "^2.2.16"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/runtime-corejs3": "^7.15.4",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"core-js": "^3.18.2",
"eslint": "^7.32.0",
"mocha": "^9.1.2",
"standard-version": "^9.3.1",
"webpack": "^5.58.0",
"webpack-cli": "^4.9.0"
}
}