UNPKG

1.26 kBJSONView Raw
1{
2 "name": "graphql-subscriptions",
3 "version": "0.2.0",
4 "description": "GraphQL subscriptions for node.js",
5 "main": "dist/index.js",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/apollostack/graphql-subscriptions.git"
9 },
10 "dependencies": {
11 "es6-promise": "^3.2.1",
12 "graphql": "^0.7.0"
13 },
14 "scripts": {
15 "compile": "tsc",
16 "typings": "typings install",
17 "pretest": "npm run compile",
18 "test": "npm run testonly --",
19 "posttest": "npm run lint",
20 "lint": "tslint ./src/**/*.ts",
21 "watch": "tsc -w",
22 "testonly": "mocha --reporter spec --full-trace ./dist/test/tests.js",
23 "coverage": "node ./node_modules/istanbul/lib/cli.js cover _mocha -- --full-trace ./dist/test/tests.js",
24 "postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info"
25 },
26 "devDependencies": {
27 "chai": "^3.5.0",
28 "chai-as-promised": "^5.3.0",
29 "istanbul": "^1.0.0-alpha.2",
30 "mocha": "^3.0.0",
31 "remap-istanbul": "^0.6.4",
32 "sinon": "^1.17.6",
33 "sinon-chai": "^2.8.0",
34 "tslint": "^3.13.0",
35 "typescript": "^2.0.0",
36 "typings": "^1.3.2"
37 },
38 "typings": "dist/index.d.ts",
39 "typescript": {
40 "definition": "dist/index.d.ts"
41 }
42}