-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.64 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.64 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
{
"name": "fetchql",
"version": "3.0.0",
"description": "GraphQL query client with Fetch",
"main": "index.js",
"module": "lib/fetchql.es.js",
"types": "src/fetchql.d.ts",
"scripts": {
"test": "NODE_ENV=test istanbul cover _mocha -- ./test/test",
"compile": "run-p compile:es compile:cjs",
"compile:cjs": "NODE_ENV=cjs node_modules/.bin/babel src/index.js --out-file lib/fetchql.js",
"compile:es": "NODE_ENV=es node_modules/.bin/babel src/index.js --out-file lib/fetchql.es.js",
"start": "node_modules/.bin/babel -w src/index.js --out-file lib/fetchql.js",
"coverage": "cat ./coverage/lcov.info | coveralls",
"docs": "jsdoc src/index.js ./README.md -d ./docs/"
},
"repository": {
"type": "git",
"url": "https://github.com/gucheen/FetchQL.git"
},
"keywords": [
"grahpql",
"fetch"
],
"author": "guchengf@gmail.com",
"license": "MIT",
"devDependencies": {
"apollo-server": "^0.1.4",
"babel-cli": "^6.18.0",
"babel-core": "^6.9.0",
"babel-plugin-transform-es2015-modules-umd": "^6.18.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"express": "^4.13.4",
"graphql": "^0.8.2",
"istanbul": "v1.0.0-alpha.2",
"jsdoc": "^3.6.6",
"mocha": "^3.2.0",
"node-fetch": "^1.5.2",
"npm-run-all": "^4.1.5"
},
"dependencies": {}
}