forked from stylesuxx/graphql-custom-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "graphql-custom-types-verso",
"repository": "versolearning/graphql-custom-types",
"version": "1.7.0",
"description": "Collection of custom graphql types used in Verso App.",
"author": "Phuc Nguyen <npm@phucnguyen.info>",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib",
"build": "npm run clean && ./node_modules/.bin/babel src --out-dir lib",
"test": "npm run build && ./node_modules/.bin/babel-node ./tests/index.js",
"lint": "./node_modules/.bin/eslint src tests",
"prepublish": "npm run build",
"preversion": "npm test"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/node": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-eslint": "^10.1.0",
"eslint": "^7.0.0",
"tape": "^4.11.0"
},
"peerDependencies": {
"graphql": "^0.6.0 || ^0.7.0 || ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
},
"keywords": [
"es6",
"es2015",
"GraphQL",
"express-graphql",
"GraphQL types"
],
"engines": {
"node": ">= 6.9"
},
"dependencies": {
"graphql": "^0.9.6",
"simpl-schema": "^0.3.0"
},
"types": "./index.d.ts"
}