Skip to content

Commit

Permalink
chore: update lint script and apollo-client dep req
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Kisiela committed Aug 23, 2016
1 parent 61e2d50 commit a3bfa6d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
build
coverage
node_modules
typings
build/
coverage/
node_modules/
typings/
npm-debug.log
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"name": "apollo-client-rxjs",
"version": "0.0.1",
"description": "Adds RxJS to ApolloClient",
"author": "Kamil Kisiela <kamil.kisiela@gmail.com>",
"license": "MIT",
"main": "./build/src/index.js",
"typings": "./build/src/index.d.ts",
"keywords": [
Expand All @@ -22,7 +24,7 @@
"test-watch": "mocha --reporter spec --full-trace build/tests/index.js --watch",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --reporter dot --full-trace build/tests/index.js",
"postcoverage": "remap-istanbul --input coverage/coverage.json --type lcovonly --output coverage/lcov.info",
"lint": "tslint -e src/*.ts && tslint test/*.ts ",
"lint": "tslint -e src/*.ts && tslint test/*.ts",
"prebuild": "npm run clean:build",
"build": "tsc",
"watch": "tsc -w",
Expand All @@ -33,19 +35,17 @@
"typings": "typings i",
"prepublish": "npm run clean && npm run typings && npm run build"
},
"author": "Kamil Kisiela <kamil.kisiela@gmail.com>",
"license": "MIT",
"dependencies": {
"lodash.assign": "^4.2.0",
"lodash.isfunction": "^3.0.8",
"lodash.omit": "^4.5.0",
"rxjs": "^5.0.0-beta.6"
},
"peerDependencies": {
"apollo-client": "^0.4.11"
"apollo-client": "^0.4.13"
},
"devDependencies": {
"apollo-client": "^0.4.11",
"apollo-client": "^0.4.13",
"chai": "^3.5.0",
"graphql": "^0.6.2",
"graphql-tag": "^0.1.11",
Expand Down

0 comments on commit a3bfa6d

Please sign in to comment.