|
1 | 1 | {
|
2 | 2 | "name": "graphql-compose-connection",
|
3 |
| - "version": "1.0.4", |
| 3 | + "version": "1.0.5", |
4 | 4 | "description": "Plugin for `graphql-compose` which provide a connection resolver for types.",
|
5 | 5 | "files": [
|
6 | 6 | "es",
|
|
27 | 27 | "graphql-compose": ">=0.0.6 || >=1.0.0"
|
28 | 28 | },
|
29 | 29 | "devDependencies": {
|
30 |
| - "babel-cli": "6.10.1", |
31 |
| - "babel-eslint": "6.1.0", |
32 |
| - "babel-plugin-syntax-async-functions": "6.8.0", |
33 |
| - "babel-plugin-transform-class-properties": "6.10.2", |
| 30 | + "babel-cli": "6.11.4", |
| 31 | + "babel-eslint": "6.1.2", |
| 32 | + "babel-plugin-syntax-async-functions": "6.13.0", |
| 33 | + "babel-plugin-transform-class-properties": "6.11.5", |
34 | 34 | "babel-plugin-transform-flow-strip-types": "6.8.0",
|
35 | 35 | "babel-plugin-transform-object-rest-spread": "6.8.0",
|
36 |
| - "babel-plugin-transform-regenerator": "6.9.0", |
37 |
| - "babel-preset-es2015": "6.9.0", |
| 36 | + "babel-plugin-transform-regenerator": "6.11.4", |
| 37 | + "babel-plugin-transform-runtime": "6.12.0", |
| 38 | + "babel-preset-es2015": "6.13.2", |
38 | 39 | "chai": "3.5.0",
|
39 | 40 | "chai-as-promised": "5.3.0",
|
40 | 41 | "chai-spies": "0.7.1",
|
41 |
| - "eslint": "2.13.1", |
42 |
| - "eslint-config-airbnb": "9.0.1", |
43 |
| - "eslint-plugin-flow-vars": "0.4.0", |
44 |
| - "eslint-plugin-flowtype": "2.2.7", |
45 |
| - "eslint-plugin-import": "1.10.2", |
46 |
| - "eslint-plugin-jsx-a11y": "1.5.5", |
47 |
| - "eslint-plugin-react": "5.2.2", |
48 |
| - "flow-bin": "0.29.0", |
49 |
| - "mocha": "2.5.3", |
50 |
| - "rimraf": "2.5.2", |
51 |
| - "sane": "1.3.4" |
| 42 | + "eslint": "3.2.2", |
| 43 | + "eslint-config-airbnb": "10.0.0", |
| 44 | + "eslint-plugin-flow-vars": "0.5.0", |
| 45 | + "eslint-plugin-flowtype": "2.6.1", |
| 46 | + "eslint-plugin-import": "1.12.0", |
| 47 | + "eslint-plugin-jsx-a11y": "2.0.1", |
| 48 | + "eslint-plugin-react": "6.0.0", |
| 49 | + "flow-bin": "0.30.0", |
| 50 | + "mocha": "3.0.2", |
| 51 | + "rimraf": "2.5.4", |
| 52 | + "sane": "1.4.1" |
52 | 53 | },
|
53 | 54 | "scripts": {
|
54 | 55 | "build": "npm run build-cjs && npm run build-flow && npm run build-es",
|
55 | 56 | "build-cjs": "rimraf lib && babel src --ignore __tests__,__mocks__ -d lib",
|
56 | 57 | "build-es": "rimraf es && BABEL_ENV=es babel src --ignore __tests__,__mocks__ -d es",
|
57 |
| - "build-flow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\\/src\\\//\\\/lib\\\//g'`.flow; done", |
| 58 | + "build-flow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/lib\\//g'`.flow; done", |
58 | 59 | "lint": "eslint src test *.js",
|
59 | 60 | "prepublish": "npm run test && npm run build",
|
60 | 61 | "test": "babel-node ./node_modules/.bin/_mocha --compilers js:babel-core/register --reporter dot --require ./resources/mocha-bootload src/**/__tests__/**/*-test.js",
|
|
0 commit comments