|
1 | 1 | { |
2 | 2 | "name": "graphql-compose-mongoose", |
3 | | - "version": "1.0.8", |
| 3 | + "version": "1.0.9", |
4 | 4 | "description": "Plugin for `graphql-compose` which derive a graphql type from a mongoose model.", |
5 | 5 | "files": [ |
6 | 6 | "es", |
|
24 | 24 | }, |
25 | 25 | "homepage": "https://github.com/nodkz/graphql-compose-mongoose", |
26 | 26 | "dependencies": { |
| 27 | + "babel-runtime": "6.11.6", |
27 | 28 | "object-path": "^0.11.0" |
28 | 29 | }, |
29 | 30 | "peerDependencies": { |
|
40 | 41 | "babel-plugin-transform-flow-strip-types": "6.8.0", |
41 | 42 | "babel-plugin-transform-object-rest-spread": "6.8.0", |
42 | 43 | "babel-plugin-transform-regenerator": "6.11.4", |
| 44 | + "babel-plugin-transform-runtime": "6.12.0", |
43 | 45 | "babel-preset-es2015": "6.13.2", |
44 | 46 | "chai": "3.5.0", |
45 | 47 | "chai-as-promised": "5.3.0", |
|
59 | 61 | "build": "npm run build-cjs && npm run build-flow && npm run build-es", |
60 | 62 | "build-cjs": "rimraf lib && babel src --ignore __tests__,__mocks__ -d lib", |
61 | 63 | "build-es": "rimraf es && BABEL_ENV=es babel src --ignore __tests__,__mocks__ -d es", |
62 | | - "build-flow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\\/src\\\//\\\/lib\\\//g'`.flow; done", |
| 64 | + "build-flow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/lib\\//g'`.flow; done", |
63 | 65 | "lint": "eslint src test *.js", |
64 | 66 | "prepublish": "npm run test && npm run build", |
65 | 67 | "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