|
1 | 1 | { |
2 | 2 | "name": "graphql-compose-relay", |
3 | | - "version": "1.0.5", |
| 3 | + "version": "1.0.6", |
4 | 4 | "description": "Plugin for `graphql-compose` which wraps graphql types with Relay specific logic.", |
5 | 5 | "files": [ |
6 | 6 | "es", |
|
34 | 34 | "babel-plugin-transform-flow-strip-types": "6.8.0", |
35 | 35 | "babel-plugin-transform-object-rest-spread": "6.8.0", |
36 | 36 | "babel-plugin-transform-regenerator": "6.11.4", |
| 37 | + "babel-plugin-transform-runtime": "6.12.0", |
37 | 38 | "babel-preset-es2015": "6.13.2", |
38 | 39 | "chai": "3.5.0", |
39 | 40 | "chai-as-promised": "5.3.0", |
|
53 | 54 | "build": "npm run build-cjs && npm run build-flow && npm run build-es", |
54 | 55 | "build-cjs": "rimraf lib && babel src --ignore __tests__,__mocks__ -d lib", |
55 | 56 | "build-es": "rimraf es && BABEL_ENV=es babel src --ignore __tests__,__mocks__ -d es", |
56 | | - "build-flow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\\/src\\\//\\\/lib\\\//g'`.flow; done", |
| 57 | + "build-flow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/lib\\//g'`.flow; done", |
57 | 58 | "lint": "eslint src test *.js", |
58 | 59 | "prepublish": "npm run test && npm run build", |
59 | 60 | "test": "babel-node ./node_modules/.bin/_mocha --compilers js:babel-core/register --reporter dot --require ./resources/mocha-bootload src/**/__tests__/**/*-test.js", |
60 | 61 | "watch": "babel-node ./resources/watch.js", |
61 | 62 | "link": "npm link graphql && npm link graphql-compose && npm link" |
| 63 | + }, |
| 64 | + "dependencies": { |
| 65 | + "babel-runtime": "6.11.6" |
62 | 66 | } |
63 | 67 | } |
0 commit comments