-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 2.31 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "graphql-rxjs",
"version": "0.11.7-0",
"description": "Addon package for GraphQL which adds support for Observables",
"contributors": [
"Hagai Cohen <hagai.co@gmail.com>",
"Lee Byron <lee@leebyron.com> (http://leebyron.com/)",
"Nicholas Schrock <schrockn@fb.com>",
"Daniel Schafer <dschafer@fb.com>"
],
"license": "BSD-3-Clause",
"main": "dist/bundle.js",
"typings": "bundle.d.ts",
"homepage": "https://github.com/DxCx/graphql-rxjs",
"bugs": {
"url": "https://github.com/DxCx/graphql-rxjs/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/DxCx/graphql-rxjs.git"
},
"scripts": {
"prebuild": "rimraf dist && node resources/fixModules.js",
"build": "rollup -c",
"pretest": "npm run build",
"benchmark": "babel-node --max-old-space-size=4096 ./graphql/node_modules/.bin/_mocha --require ./graphql/resources/mocha-bootload ./resources/benchmark.js",
"test": "npm run testonly",
"testonly": "jest",
"prepublish": "npm run test"
},
"peerDependencies": {
"graphql": "0.11.7",
"rxjs": "^5.4.3"
},
"optionalDependencies": {
"@types/graphql": "^0.11.4"
},
"devDependencies": {
"@types/graphql": "^0.11.4",
"@types/jest": "^21.1.1",
"babel-cli": "^6.26.0",
"babel-plugin-detective": "^2.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015-node": "^6.1.1",
"benchmark": "^2.1.4",
"fs-extra": "^4.0.2",
"graphql": "0.11.7",
"graphql-tools": "^1.2.3",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"minimatch": "^3.0.4",
"rimraf": "^2.6.2",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-cleanup": "^1.0.1",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-progress": "^0.4.0",
"rollup-plugin-strip": "^1.1.1",
"rollup-plugin-uglify": "^2.0.1",
"rxjs": "^5.4.3",
"ts-jest": "^21.0.1",
"typescript": "^2.5.3",
"yarn": "^1.1.0"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testEnvironment": "node",
"testRegex": ".*\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}