{ "name": "docker-compose-client", "version": "1.0.4", "license": "MPL2.0", "repository": "github:yldio/docker-compose-client", "files": [ "dist" ], "main": "dist/index.umd.js", "jsnext:main": "dist/index.es.js", "module": "dist/index.es.js", "entry": "src/index.js", "scripts": { "fmt": "prettier --write --single-quote --parser flow", "format": "fmt {src,scripts,test}/**/*.js", "lint": "eslint {src,scripts,test}/**/*.js --fix", "test": "npm run build && cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text ava", "flow": "flow check", "lint-staged": "lint-staged", "build": "rollup --config scripts/rollup.config.js", "prepublish": "npm run build", "dev-start": "npm run build && node ." }, "dependencies": { "apr-awaitify": "^1.0.4", "zerorpc": "^0.9.7" }, "devDependencies": { "apr-intercept": "^1.0.4", "ava": "0.19.1", "babel-eslint": "^7.2.3", "babel-plugin-external-helpers": "6.22.0", "babel-plugin-istanbul": "^4.1.3", "babel-plugin-transform-flow-strip-types": "^6.22.0", "babel-preset-env": "1.4.0", "babel-preset-flow": "^6.23.0", "babelrc-rollup": "3.0.0", "cross-env": "^5.0.0", "documentation": "4.0.0-rc.1", "eslint": "3.19.0", "eslint-config-prettier": "2.1.0", "eslint-config-xo-space": "^0.16.0", "eslint-plugin-flowtype": "2.33.0", "eslint-plugin-flowtype-errors": "3.2.1", "eslint-plugin-prettier": "^2.0.1", "flow-bin": "0.46.0", "flow-typed": "^2.1.2", "js-yaml": "^3.8.4", "lint-staged": "3.4.1", "nyc": "10.3.2", "pre-commit": "1.2.2", "prettier": "1.3.1", "quality-docs": "3.3.0", "rollup": "0.41.6", "rollup-plugin-babel": "2.7.1" }, "pre-commit": "lint-staged", "lint-staged": { "*.js": [ "npm run fmt", "eslint --fix", "git add" ] }, "nyc": { "sourceMap": false, "instrument": false }, "ava": { "files": [ "test/*.js" ], "source": [ "src/**/*.{js,jsx}" ], "tap": true } }