-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.43 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
{
"name": "graphql-rest-connections",
"version": "1.0.0",
"description": "This library helps with pagination in GraphQL, when backed by REST services.",
"keywords": [
"graphql",
"rest",
"connections",
"pagination"
],
"repository": {
"type": "git",
"url": "git://github.com/dowjones/graphql-rest-connections.git"
},
"author": "[email protected]",
"main": "lib/index",
"main-es6": "src/index",
"license": "MIT",
"scripts": {
"prepublish": "babel src -d lib --optional runtime",
"lint": "eslint src test",
"test": "npm run lint && npm run test-cover && npm run test-check-coverage",
"test-watch": "babel-node ./node_modules/.bin/_mocha --require should --recursive --reporter min --watch",
"test-cover": "babel-node ./node_modules/.bin/babel-istanbul cover _mocha -- --require should --recursive",
"test-check-coverage": "babel-istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-eslint": "^5.0.0-beta6",
"babel-istanbul": "^0.6.0",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.4.3",
"eslint": "^1.10.3",
"istanbul": "^0.4.2",
"mocha": "^2.3.4",
"should": "^8.1.1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
}
}