UNPKG

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