-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
71 lines (71 loc) · 2.18 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
{
"name": "apollo-client-rxjs",
"version": "0.6.0-rc.2",
"description": "Adds RxJS to ApolloClient",
"author": "Kamil Kisiela <[email protected]>",
"license": "MIT",
"main": "build/bundles/apollo-rxjs.umd.js",
"module": "./build/src/index.js",
"typings": "./build/src/index.d.ts",
"repository": {
"type": "git",
"url": "kamilkisiela/apollo-client-rxjs"
},
"keywords": [
"es2015",
"jsnext",
"javascript",
"apollo",
"apollostack",
"rxjs",
"npm",
"graphql"
],
"scripts": {
"pretest": "npm run build-test",
"test": "npm run test-only --",
"posttest": "npm run lint",
"test-only": "mocha --reporter spec --full-trace build/tests/index.js",
"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 src/**/*.ts && tslint tests/**/*.ts",
"prebuild": "npm run clean:build",
"build": "tsc",
"build-test": "tsc -p tsconfig.test.json",
"postbuild": "npm run bundle",
"bundle": "rollup -c",
"watch": "tsc -w",
"clean": "npm run clean:build && npm run clean:coverage",
"clean:build": "rimraf build/*",
"clean:coverage": "rimraf coverage/*",
"prepare": "npm run clean && npm run build",
"deploy": "./scripts/deploy.sh"
},
"peerDependencies": {
"apollo-client": ">=1.0.0-beta <2.0.0",
"rxjs": "^5.0.0-beta.12 || >=5.0.0-rc.1 <6.0.0"
},
"devDependencies": {
"@types/chai": "^4.0.2",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.20",
"@types/sinon": "^2.3.3",
"apollo-client": "^1.9.1",
"apollo-test-utils": "^0.3.2",
"chai": "^4.1.1",
"graphql": "^0.10.5",
"graphql-tag": "^2.4.2",
"isomorphic-fetch": "^2.2.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"remap-istanbul": "^0.9.5",
"rimraf": "^2.6.1",
"rollup": "^0.45.2",
"rxjs": "^5.4.2",
"sinon": "^3.2.0",
"source-map-support": "^0.4.15",
"tslint": "^5.6.0",
"typescript": "^2.4.2"
}
}