This repository has been archived by the owner on May 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.88 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": "relay-helpers",
"version": "2.0.6",
"description": "Helpers to simplify and enhance Relay",
"repository": {
"type": "git",
"url": "git://github.com/mixcloud/relay-helpers.git"
},
"main": "lib/index.js",
"scripts": {
"lint": "BABEL_ENV=test eslint --config=.eslintrc.js . --max-warnings=0",
"lint-fix": "BABEL_ENV=test eslint --config=.eslintrc.js . --fix",
"test": "BABEL_ENV=test jest --config=jest.config.json",
"test-watch": "BABEL_ENV=test jest --config=jest.config.json --watch --onlyChanged",
"flow": "flow .",
"compile": "BABEL_ENV=build babel --ignore __tests__,__mocks__ --out-dir lib/ src/",
"prepublish": "npm run compile",
"local-watch": " BABEL_ENV=build babel -w --ignore __tests__,__mocks__ --out-dir ../mixcloud/website/js/node_modules/relay-helpers/lib/ src"
},
"files": [
"LICENSE",
"README.md",
"lib/",
"src/"
],
"keywords": [
"graphql",
"relay",
"react"
],
"author": {
"name": "Sam Cooke",
"email": "sam@mixcloud.com"
},
"license": "MIT",
"dependencies": {
"deep-equal": "^1.0.1",
"hoist-non-react-statics": "^1.0.3",
"react-relay": "1.1.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-plugin-react-require": "^3.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-relay-plugin": "^0.11.0",
"enzyme": "^2.9.1",
"eslint": "^3.16.1",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-header": "^1.0.0",
"eslint-plugin-react": "^6.10.0",
"flow-bin": "^0.40.0",
"jest": "^19.0.2",
"jest-jasmine2": "^19.0.2",
"react-test-renderer": "^15.5.1"
},
"peerDependencies": {
"react": "15.6.1",
"react-dom": "15.6.1"
}
}