-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "apollo-upload-network-interface",
"description": "UploadNetworkInterface for Apollo GraphQL Client",
"main": "lib/index.js",
"module": "src/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "babel src -d lib",
"clean": "rimraf lib",
"lint": "eslint src/** test/**",
"prepublish": "npm run clean && npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "mocha ./test/setup.js"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/HriBB/apollo-upload-network-interface.git"
},
"keywords": [
"apollo",
"graphql",
"file",
"upload",
"network",
"interface"
],
"author": "Bojan Hribernik",
"license": "MIT",
"bugs": {
"url": "https://github.com/HriBB/apollo-upload-network-interface/issues"
},
"homepage": "https://github.com/HriBB/apollo-upload-network-interface#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"eslint": "^3.15.0",
"mocha": "^3.2.0",
"rimraf": "^2.5.4",
"semantic-release": "^6.3.2"
},
"dependencies": {
"apollo-client": "^0.8.2"
}
}