-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.23 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-query-tree",
"version": "0.3.0",
"engines": {
"node": ">=4.x"
},
"description": "GraphQL query tree from info object",
"main": "dist/graphql-query-tree.js",
"keywords": [
"graphql",
"query",
"tree",
"info",
"resolver"
],
"scripts": {
"build-test": "npm run build && npm test",
"test": "./node_modules/.bin/mocha test-dist/*.test.js",
"build": "./node_modules/.bin/babel src --out-dir dist && ./node_modules/.bin/babel test --out-dir test-dist",
"preversion": "npm run build-test"
},
"repository": {
"type": "git",
"url": "https://github.com/alekbarszczewski/graphql-query-tree"
},
"author": "Alek Barszczewski <[email protected]>",
"license": "ISC",
"dependencies": {
"graphql": "^0.13.2",
"selectn": "^1.1.2"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-es2015-parameters": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015-node6": "^0.4.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.23.0",
"chai": "^3.5.0",
"graphql-tools": "^0.10.1",
"mocha": "^3.2.0"
}
}