|
32 | 32 | "babel-plugin-transform-flow-strip-types": "^6.22.0", |
33 | 33 | "babel-plugin-transform-object-rest-spread": "^6.23.0", |
34 | 34 | "babel-plugin-transform-runtime": "^6.23.0", |
35 | | - "babel-preset-env": "^1.5.1", |
| 35 | + "babel-preset-env": "^1.5.2", |
36 | 36 | "cz-conventional-changelog": "^2.0.0", |
37 | 37 | "eslint": "^3.19.0", |
38 | 38 | "eslint-config-airbnb-base": "^11.2.0", |
|
42 | 42 | "eslint-plugin-prettier": "^2.1.1", |
43 | 43 | "flow-bin": "^0.47.0", |
44 | 44 | "graphql": "^0.10.1", |
45 | | - "graphql-compose": "^1.20.3", |
| 45 | + "graphql-compose": "^1.21.1", |
46 | 46 | "jest": "^20.0.4", |
47 | | - "prettier": "^1.4.2", |
| 47 | + "prettier": "^1.4.4", |
48 | 48 | "rimraf": "^2.6.1", |
49 | 49 | "semantic-release": "^6.3.2" |
50 | 50 | }, |
|
65 | 65 | "build": "npm run build-cjs && npm run build-flow", |
66 | 66 | "build-cjs": "rimraf lib && babel src --ignore __tests__,__mocks__ -d lib", |
67 | 67 | "build-flow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/lib\\//g'`.flow; done", |
68 | | - "coverage": "jest --coverage", |
69 | | - "lint": "eslint src test *.js", |
70 | | - "test": "jest", |
71 | 68 | "watch": "jest --watch", |
| 69 | + "coverage": "jest --coverage", |
| 70 | + "lint": "eslint --ext .js ./src", |
72 | 71 | "flow": "./node_modules/.bin/flow stop && ./node_modules/.bin/flow", |
73 | | - "all": "npm run test && npm run lint && npm run flow", |
| 72 | + "test": "npm run coverage && npm run lint && npm run flow", |
74 | 73 | "link": "yarn build && yarn link graphql-compose && yarn link", |
75 | 74 | "unlink": "yarn unlink graphql-compose && yarn add graphql-compose", |
76 | 75 | "semantic-release": "semantic-release pre && npm publish && semantic-release post" |
|
0 commit comments