|
3 | 3 | "version": "0.0.0-semantically-released",
|
4 | 4 | "description": "Plugin for `graphql-compose` which provide a connection resolver for types.",
|
5 | 5 | "files": [
|
6 |
| - "es", |
7 | 6 | "lib",
|
8 | 7 | "README.md"
|
9 | 8 | ],
|
|
29 | 28 | },
|
30 | 29 | "devDependencies": {
|
31 | 30 | "babel-cli": "^6.24.1",
|
32 |
| - "babel-core": "^6.24.1", |
33 | 31 | "babel-eslint": "^7.2.3",
|
34 |
| - "babel-plugin-syntax-async-functions": "6.13.0", |
35 |
| - "babel-plugin-transform-class-properties": "^6.24.1", |
36 | 32 | "babel-plugin-transform-flow-strip-types": "^6.22.0",
|
37 | 33 | "babel-plugin-transform-object-rest-spread": "^6.23.0",
|
38 |
| - "babel-plugin-transform-regenerator": "^6.24.1", |
39 |
| - "babel-plugin-transform-runtime": "^6.23.0", |
40 |
| - "babel-preset-es2015": "^6.24.1", |
41 | 34 | "chai": "^4.0.1",
|
42 | 35 | "chai-as-promised": "6.0.0",
|
43 | 36 | "chai-spies": "0.7.1",
|
| 37 | + "babel-preset-env": "^1.5.1", |
44 | 38 | "cz-conventional-changelog": "^2.0.0",
|
45 | 39 | "eslint": "^3.19.0",
|
46 | 40 | "eslint-config-airbnb-base": "^11.2.0",
|
|
58 | 52 | "sane": "^1.7.0",
|
59 | 53 | "semantic-release": "^6.3.2"
|
60 | 54 | },
|
61 |
| - "dependencies": { |
62 |
| - "babel-runtime": "^6.23.0" |
63 |
| - }, |
| 55 | + "dependencies": {}, |
64 | 56 | "config": {
|
65 | 57 | "commitizen": {
|
66 | 58 | "path": "./node_modules/cz-conventional-changelog"
|
|
79 | 71 | ]
|
80 | 72 | },
|
81 | 73 | "scripts": {
|
82 |
| - "build": "npm run build-cjs && npm run build-flow && npm run build-es", |
| 74 | + "build": "npm run build-cjs && npm run build-flow", |
83 | 75 | "build-cjs": "rimraf lib && babel src --ignore __tests__,__mocks__ -d lib",
|
84 |
| - "build-es": "rimraf es && BABEL_ENV=es babel src --ignore __tests__,__mocks__ -d es", |
85 | 76 | "build-flow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/lib\\//g'`.flow; done",
|
86 | 77 | "coverage": "nyc npm run test",
|
87 | 78 | "lint": "eslint src test *.js",
|
|
0 commit comments