|
1 | 1 | { |
2 | 2 | "name": "json-graphql-server", |
3 | | - "version": "0.7.0", |
4 | | - "main": "lib/index", |
| 3 | + "version": "1.0.0", |
| 4 | + "main": "src/index", |
5 | 5 | "repository": "git@github.com:marmelab/json-graphql-server.git", |
6 | | - "authors": [ |
7 | | - "François Zaninotto", |
8 | | - "Gildas Garcia" |
9 | | - ], |
10 | | - "files": [ |
11 | | - "*.md", |
12 | | - "lib", |
13 | | - "bin" |
14 | | - ], |
| 6 | + "authors": ["François Zaninotto", "Gildas Garcia"], |
| 7 | + "files": ["*.md", "src", "bin"], |
15 | 8 | "license": "MIT", |
16 | 9 | "scripts": { |
17 | | - "build": "make build", |
18 | | - "clean": "make clean", |
19 | 10 | "format": "make format", |
20 | 11 | "precommit": "lint-staged", |
21 | | - "prepublish": "make build", |
22 | 12 | "test": "make test", |
23 | | - "watch": "make watch", |
24 | 13 | "watch-test": "make watch-test" |
25 | 14 | }, |
26 | 15 | "lint-staged": { |
27 | | - "src/**/*.js": [ |
28 | | - "eslint --fix", |
29 | | - "git add" |
30 | | - ] |
| 16 | + "src/**/*.js": ["eslint --fix", "git add"] |
31 | 17 | }, |
32 | 18 | "devDependencies": { |
33 | 19 | "@types/jest": "~19.2.4", |
34 | 20 | "babel-cli": "~6.24.1", |
35 | 21 | "babel-core": "~6.25.0", |
36 | 22 | "babel-eslint": "~7.2.3", |
37 | 23 | "babel-jest": "~20.0.3", |
38 | | - "babel-loader": "^7.1.1", |
39 | 24 | "babel-plugin-add-module-exports": "^0.2.1", |
40 | 25 | "babel-plugin-external-helpers": "~6.22.0", |
| 26 | + "babel-plugin-transform-runtime": "~6.23.0", |
41 | 27 | "babel-preset-es2015": "~6.24.1", |
42 | 28 | "babel-preset-stage-0": "~6.24.1", |
43 | 29 | "eslint": "~4.2.0", |
|
57 | 43 | "rollup-plugin-node-globals": "~1.1.0", |
58 | 44 | "rollup-plugin-node-resolve": "~3.0.0", |
59 | 45 | "rollup-watch": "~4.0.0", |
60 | | - "supertest": "^3.0.0", |
61 | | - "webpack": "~3.2.0" |
| 46 | + "supertest": "~3.0.0" |
62 | 47 | }, |
63 | 48 | "dependencies": { |
64 | 49 | "apollo-client": "~1.2.0", |
65 | 50 | "apollo-test-utils": "~0.3.2", |
66 | | - "babel-plugin-transform-runtime": "~6.23.0", |
67 | 51 | "express": "~4.15.3", |
68 | 52 | "express-graphql": "~0.6.7", |
69 | 53 | "graphql": "~0.10.5", |
70 | 54 | "graphql-tag": "~2.0.0", |
71 | 55 | "graphql-tools": "~1.1.0", |
72 | 56 | "graphql-type-json": "~0.1.4", |
73 | 57 | "inflection": "~1.12.0", |
74 | | - "lodash.merge": "~4.6.0" |
| 58 | + "lodash.merge": "~4.6.0", |
| 59 | + "reify": "~0.12.0" |
75 | 60 | }, |
76 | 61 | "bin": { |
77 | 62 | "json-graphql-server": "bin/json-graphql-server.js" |
|
0 commit comments