forked from facebook/relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.89 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
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
95
96
97
{
"name": "react-relay",
"description": "A framework for building data-driven React applications.",
"version": "0.6.1",
"keywords": [
"graphql",
"react",
"relay"
],
"license": "BSD-3-Clause",
"homepage": "https://facebook.github.io/relay/",
"bugs": "https://github.com/facebook/relay/issues",
"files": [
"LICENSE",
"PATENTS",
"README.md",
"dist/",
"lib/"
],
"main": "lib/Relay.js",
"repository": "facebook/relay",
"scripts": {
"build": "gulp",
"lint": "eslint .",
"prepublish": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json && npm run build",
"test": "f() { EXIT=0; npm run typecheck || EXIT=$?; NODE_ENV=test jest $@ || EXIT=$?; exit $EXIT; }; f",
"typecheck": "flow check src/",
"update-schema": "babel-node ./scripts/jest/updateSchema.js"
},
"dependencies": {
"babel-runtime": "5.8.24",
"fbjs": "^0.7.0",
"react-static-container": "^1.0.0-alpha.1"
},
"peerDependencies": {
"babel-relay-plugin": "0.6.3",
"react": "^0.14.0"
},
"devDependencies": {
"babel": "^5.8.25",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.1",
"del": "^1.2.0",
"eslint": "^1.3.1",
"eslint-plugin-react": "^3.3.1",
"fbjs-scripts": "^0.5.0",
"flow-bin": "0.21.0",
"graphql": "0.4.13",
"gulp": "^3.9.0",
"gulp-babel": "^5.1.0",
"gulp-derequire": "^2.1.0",
"gulp-flatten": "^0.1.0",
"gulp-header": "^1.2.2",
"gulp-util": "^3.0.6",
"jest-cli": "^0.8.1",
"object-assign": "^3.0.0",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"run-sequence": "^1.1.2",
"webpack": "1.11.0",
"webpack-stream": "^2.1.0"
},
"devEngines": {
"node": ">=4.x",
"npm": ">=2.x"
},
"jest": {
"rootDir": "",
"testRunner": "<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2.js",
"scriptPreprocessor": "scripts/jest/preprocessor.js",
"setupEnvScriptFile": "node_modules/fbjs-scripts/jest/environment.js",
"persistModuleRegistryBetweenSpecs": true,
"modulePathIgnorePatterns": [
"<rootDir>/lib/",
"<rootDir>/src/(.*).native.js",
"<rootDir>/node_modules/(?!(fbjs/lib/|react/lib/|fbjs-scripts/jest))"
],
"preprocessorIgnorePatterns": [
"<rootDir>/node_modules/"
],
"testPathDirs": [
"<rootDir>/node_modules/fbjs/lib/",
"<rootDir>/node_modules/react/lib/",
"<rootDir>/node_modules/react-static-container/lib/",
"<rootDir>/src/"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/fbjs/node_modules/core-js/",
"<rootDir>/node_modules/fbjs-scripts/",
"<rootDir>/node_modules/fbjs/node_modules/promise/",
"<rootDir>/node_modules/fbjs/lib/(?!(ErrorUtils.js$|fetch.js$|fetchWithRetries.js$))",
"<rootDir>/node_modules/react/",
"<rootDir>/node_modules/react-dom/",
"<rootDir>/node_modules/react-static-container/"
]
}
}