-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 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
{
"name": "react-reach",
"version": "0.4.1",
"description": "A small library for react to communicate with GraphQL",
"main": "dist/react-reach.js",
"scripts": {
"prebuild": "rm -rf dist && mkdir dist && mkdir dist/utils",
"build": "babel src/index.js -o dist/index.js && babel src/reachGraphQL.js -o dist/reachGraphQL.js && babel src/reachWithDispatch.js -o dist/reachWithDispatch.js && babel src/utils/transport.js -o dist/utils/transport.js",
"build:develop": "cross-env NODE_ENV=development webpack src/index.js dist/react-reach.js",
"build:production": "cross-env NODE_ENV=production webpack src/index.js dist/react-reach.min.js",
"test": "babel-istanbul cover -x *.spec.js _mocha -- -R spec test/reachGraphQL.spec.js -w --compilers js:babel-core/register",
"test:single": "babel-node ./node_modules/.bin/babel-istanbul cover _mocha test/reachGraphQL.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kennetpostigo/react-reach.git"
},
"keywords": [
"reach",
"functional",
"react"
],
"author": "Kennet Postigo <[email protected]> (http://kpostigo.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kennetpostigo/react-reach/issues"
},
"homepage": "https://github.com/kennetpostigo/react-reach#readme",
"devDependencies": {
"babel-cli": "6.4.0",
"babel-core": "6.4.0",
"babel-eslint": "4.1.6",
"babel-istanbul": "0.5.8",
"babel-loader": "6.2.1",
"babel-plugin-transform-async-to-generator": "6.4.6",
"babel-plugin-transform-runtime": "6.4.3",
"babel-preset-es2015": "6.3.13",
"babel-runtime": "6.3.19",
"chai": "3.4.1",
"chai-as-promised": "5.1.0",
"commitizen": "2.4.4",
"cross-env": "1.0.7",
"cz-conventional-changelog": "1.1.4",
"eslint": "1.10.3",
"eslint-plugin-babel": "3.0.0",
"fetch-mock": "3.0.3",
"isparta": "4.0.0",
"istanbul": "0.4.0",
"mocha": "2.3.3",
"sinon": "1.17.2",
"webpack": "1.12.14"
},
"dependencies": {
"isomorphic-fetch": "2.2.1"
}
}