This repository was archived by the owner on Oct 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.59 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.59 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"private": false,
"name": "react-relay-rebind",
"version": "0.1.0",
"description": "Component-scope state management for Relay modern & React.",
"homepage": "",
"repository": "https://github.com/antegulin/react-relay-rebind",
"author": "Ante Gulin <theguxi@gmail.com>",
"contributors": [],
"license": "MIT",
"keywords": [
"react",
"reactjs",
"relay",
"relay modern",
"local",
"state",
"mutation"
],
"main": "dist/index.js",
"jsnext:main": "dist/index.es.js",
"files": [
"dist"
],
"babel": {
"presets": [
"latest",
"stage-0"
],
"plugins": [
"transform-runtime",
"relay",
"transform-react-jsx"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb-base"
},
"bugs": {
"url": "https://github.com/antegulin/react-relay-rebind/issues"
},
"dependencies": {
"react": "^16.0.0",
"react-relay": "^1.4.1"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-plugin-relay": "^1.4.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"babel-runtime": "^6.11.6",
"chai": "^4.0.0-canary.1",
"chai-enzyme": "^1.0.0-beta.0",
"chai-spies": "git://github.com/chaijs/chai-spies.git#b11aeebf",
"coveralls": "^2.11.14",
"del": "^2.2.2",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"eslint": "^3.8.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"graphql": "^0.11.7",
"graphql-tools": "^2.6.1",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^11.3.0",
"jsdom-global": "^3.0.2",
"mocha": "^4.0.1",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"relay-compiler": "^1.4.1",
"relay-local-schema": "^0.6.2",
"relay-runtime": "^1.4.1",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"sinon": "^2.0.0-pre.3"
},
"scripts": {
"lint": "eslint src test tools",
"test": "mocha --compilers js:babel-register -r jsdom-global/register",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch",
"test:cover": "babel-node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "node tools/build",
"dev": "yarn run build && yarn link",
"prepublish": "npm run build"
}
}