|
| 1 | +{ |
| 2 | + "name": "graphql-compose-connection", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "Plugin for `graphql-compose` which provide a connection resolver for types.", |
| 5 | + "files": [ |
| 6 | + "es", |
| 7 | + "lib" |
| 8 | + ], |
| 9 | + "main": "lib/index.js", |
| 10 | + "jsnext:main": "es/index.js", |
| 11 | + "repository": { |
| 12 | + "type": "git", |
| 13 | + "url": "git+https://github.com/nodkz/graphql-compose-connection.git" |
| 14 | + }, |
| 15 | + "keywords": [ |
| 16 | + "graphql", |
| 17 | + "compose", |
| 18 | + "relay" |
| 19 | + ], |
| 20 | + "license": "MIT", |
| 21 | + "bugs": { |
| 22 | + "url": "https://github.com/nodkz/graphql-compose-connection/issues" |
| 23 | + }, |
| 24 | + "homepage": "https://github.com/nodkz/graphql-compose-connection", |
| 25 | + "dependencies": { |
| 26 | + "graphql-compose": ">=0.0.5" |
| 27 | + }, |
| 28 | + "peerDependencies": { |
| 29 | + "graphql": "^0.5.0" |
| 30 | + }, |
| 31 | + "devDependencies": { |
| 32 | + "babel-cli": "6.10.1", |
| 33 | + "babel-eslint": "6.1.0", |
| 34 | + "babel-plugin-syntax-async-functions": "6.8.0", |
| 35 | + "babel-plugin-transform-class-properties": "6.10.2", |
| 36 | + "babel-plugin-transform-flow-strip-types": "6.8.0", |
| 37 | + "babel-plugin-transform-object-rest-spread": "6.8.0", |
| 38 | + "babel-plugin-transform-regenerator": "6.9.0", |
| 39 | + "babel-preset-es2015": "6.9.0", |
| 40 | + "chai": "3.5.0", |
| 41 | + "chai-as-promised": "5.3.0", |
| 42 | + "chai-spies": "0.7.1", |
| 43 | + "eslint": "2.13.1", |
| 44 | + "eslint-config-airbnb": "9.0.1", |
| 45 | + "eslint-plugin-flow-vars": "0.4.0", |
| 46 | + "eslint-plugin-flowtype": "2.2.7", |
| 47 | + "eslint-plugin-import": "1.10.2", |
| 48 | + "eslint-plugin-jsx-a11y": "1.5.5", |
| 49 | + "eslint-plugin-react": "5.2.2", |
| 50 | + "flow-bin": "0.28.0", |
| 51 | + "mocha": "2.5.3", |
| 52 | + "rimraf": "2.5.2", |
| 53 | + "sane": "1.3.4" |
| 54 | + }, |
| 55 | + "scripts": { |
| 56 | + "build": "npm run build-cjs && npm run build-flow && npm run build-es", |
| 57 | + "build-cjs": "rimraf lib && babel src --ignore __tests__,__mocks__ -d lib", |
| 58 | + "build-es": "rimraf es && BABEL_ENV=es babel src --ignore __tests__,__mocks__ -d es", |
| 59 | + "build-flow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\\/src\\\//\\\/lib\\\//g'`.flow; done", |
| 60 | + "lint": "eslint src test *.js", |
| 61 | + "prepublish": "npm run build", |
| 62 | + "test": "babel-node ./node_modules/.bin/_mocha --compilers js:babel-core/register --reporter dot --require ./resources/mocha-bootload src/**/__tests__/**/*-test.js", |
| 63 | + "watch": "babel-node ./resources/watch.js" |
| 64 | + } |
| 65 | +} |
0 commit comments