-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.62 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
{
"name": "apollo-mobx",
"version": "1.1.11",
"description": "HOC for querying graphql server",
"main": "index.js",
"scripts": {
"test": "TS_NODE_FAST=true mocha --require ./mocha.js --report lcovonly src/**/*.test.tsx --compilers ts:ts-node/register --bail",
"coverage": "TS_NODE_FAST=true NODE_ENV=test nyc npm test && nyc report --reporter lcov",
"coveralls": "NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"Apollo",
"GraphQL",
"Mobx"
],
"author": "Tomi Trescak <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/enzyme": "^2.8.7",
"@types/graphql": "^0.11.1",
"@types/mocha": "^2.2.42",
"@types/react": "16.0.5",
"@types/react-dom": "^15.5.4",
"apollo-cache-inmemory": "^0.2.0-rc.1",
"apollo-client": "^2.0.0-rc.3",
"apollo-module-date": "^1.0.5",
"coveralls": "^2.13.1",
"enzyme": "^2.9.1",
"graphql": "^0.10.5",
"graphql-tag": "^2.5.0",
"graphql-tools": "^1.2.2",
"mobx": "^3.2.2",
"mobx-react": "^4.2.2",
"mocha": "^3.5.2",
"nyc": "^11.2.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"ts-node": "^3.3.0",
"tslib": "^1.7.1",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"tslint-react": "^3.2.0",
"typescript": "^2.5.2",
"wafl": "^0.2.6"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"src/typings"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"all": false
},
"dependencies": {
"@types/chai": "4.0.6"
}
}