-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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-apollo-helpers",
"version": "0.1.2",
"description": "An alternate api for react-apollo with helpful defaults and less boilerplate.",
"author": "Robert Dickert",
"keywords": [
"graphql",
"apollo",
"apollo-client",
"react-apollo",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/okgrow/react-apollo-helpers"
},
"license": "MIT",
"options": {
"mocha": "--require scripts/mocha_runner src/**/__tests__/**/*.js"
},
"scripts": {
"prepublish": ". ./scripts/prepublish.sh",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testonly": "mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js",
"start": "babel src -d dist --watch"
},
"devDependencies": {
"babel-cli": "6.x.x",
"babel-core": "6.x.x",
"babel-eslint": "4.x.x",
"babel-plugin-transform-runtime": "6.x.x",
"babel-polyfill": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-stage-2": "6.x.x",
"chai": "3.x.x",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-import-resolver-meteor": "^0.2.4",
"eslint-plugin-babel": "2.x.x",
"eslint-plugin-import": "^1.10.3",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.2.2",
"mocha": "2.x.x",
"nodemon": "1.7.x"
},
"dependencies": {
"babel-runtime": "6.x.x",
"ramda": "^0.22.1"
},
"peerDependencies": {
"react-apollo": "^0.5.8"
}
}