-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.18 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.18 KB
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
{
"name": "graphql-faunadb",
"version": "0.1.0-rc.9",
"description": "A collection of types and functions to pair GraphQL with FaunaDB",
"license": "MIT",
"main": "index",
"homepage": "https://github.com/shiftx/graphql-faunadb",
"bugs": {
"url": "https://github.com/shiftx/graphql-faunadb/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/shiftx/graphql-faunadb.git"
},
"keywords": [
"graphql",
"faunadb",
"fauna"
],
"engines": {
"node": ">= 6.x"
},
"scripts": {
"test": "jest",
"build": "npm run build:clean && npm run build:cp && npm run build:package-json && npm run build:cjs && npm run build:mjs",
"build:clean": "rm -rf ./dist && mkdir ./dist",
"build:cp": "cp README.md LICENSE ./dist",
"build:package-json": "node ./scripts/copy-package-json.js",
"build:cjs": "babel src --ignore 'src/__fixtures__,**/__tests__' --out-dir dist/",
"build:mjs": "BABEL_MODULES=1 babel src --ignore 'src/__fixtures__,**/__tests__' --out-dir dist/module/ && for file in $(find dist/module -name '*.js'); do mv \"$file\" `echo \"$file\" | sed 's/dist\\/module/dist/g; s/.js$/.mjs/g'`; done && rm -rf dist/module"
},
"dependencies": {
"iterall": "^1.2.2"
},
"peerDependencies": {
"fauandb": "^2.0.0",
"graphql-js": "^0.12.0 ^0.13.0 ^14.0.0"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-syntax-async-generators": "7.0.0",
"@babel/plugin-transform-classes": "7.1.0",
"@babel/plugin-transform-destructuring": "7.1.3",
"@babel/plugin-transform-flow-strip-types": "7.0.0",
"@babel/plugin-transform-spread": "7.0.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/register": "7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "^23.6.0",
"eslint": "5.6.1",
"eslint-plugin-flowtype": "2.50.3",
"eslint-plugin-prettier": "3.0.0",
"faunadb": "^2.5.2",
"flow-bin": "0.83.0",
"graphql": "^14.0.2",
"jest": "23.6.0",
"prettier": "1.14.3"
}
}