This repository has been archived by the owner on Jun 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
74 lines (74 loc) · 2.03 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
{
"name": "apollo-bridge-link",
"version": "0.0.0-development",
"description": "When you don't have GraphQL server (yet) and want to use GraphQL on the client.",
"main": "lib/index.js",
"scripts": {
"cm": "git-cz",
"cm:retry": "git-cz --retry",
"lint": "eslint ./src",
"test": "cross-env NODE_ENV=test nyc ava",
"clean": "rimraf lib coverage",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --ignore test.js",
"build": "npm run clean && npm run build:commonjs",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"test:watch": "cross-env NODE_ENV=test ava --watch -v",
"precommit": "npm run lint && npm test",
"prepush": "npm run lint && npm test",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"author": "dacz",
"license": "MIT",
"repository": "https://github.com/dacz/apollo-bridge-link",
"ava": {
"files": [
"src/**/*.test.js"
],
"require": [
"babel-core/register"
],
"babel": "inherit"
},
"browserslist": [
"> 3%"
],
"devDependencies": {
"apollo-cache-inmemory": "^1.1.5",
"apollo-client": "^2.2.0",
"apollo-link-context": "^1.0.3",
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"codecov": "^3.0.0",
"commitizen": "^2.9.6",
"cross-env": "^5.1.3",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.15.0",
"eslint-config-dacz": "^3.1.0",
"husky": "^0.14.3",
"nyc": "^11.4.1",
"semantic-release": "^12.2.2",
"sinon": "^4.1.5",
"travis-deploy-once": "^4.3.1"
},
"dependencies": {
"apollo-link": "^1.0.7",
"graphql": "^0.13.0",
"graphql-tag": "^2.6.1",
"graphql-tools": "^2.18.0",
"zen-observable": "^0.8.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"src/",
"lib/"
]
}