Files
apollo/package.json
T
Guillaume Chau d2ff7de485 Merge pull request #62 from Austio/add-build-script
Add build script using rollup
2017-06-30 18:02:42 +02:00

56 lines
1.4 KiB
JSON

{
"name": "vue-apollo",
"version": "2.1.0-beta.9",
"description": "Vue apollo integration",
"main": "dist/main.min.js",
"scripts": {
"build": "rimraf ./dist && ./node_modules/.bin/rollup -c",
"prepublish": "npm run build",
"dev": "npm-watch"
},
"watch": {
"build": "src/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Akryum/vue-apollo.git"
},
"keywords": [
"vue",
"apollo",
"graphql"
],
"author": "Guillaume Chau <guillaume.b.chau@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Akryum/vue-apollo/issues"
},
"homepage": "https://github.com/Akryum/vue-apollo#readme",
"peerDependencies": {
"apollo-client": "^1.0.1"
},
"dependencies": {
"graphql-tag": "^2.0.0",
"lodash.debounce": "^4.0.8",
"lodash.omit": "^4.5.0",
"lodash.throttle": "^4.1.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^7.1.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.12.1",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"npm-watch": "^0.1.6",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.2",
"uglify-js-harmony": "^2.7.7"
}
}