forked from facebook/relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.87 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "relay",
"description": "A framework for building data-driven React applications.",
"version": "1.3.0",
"license": "BSD-3-Clause",
"homepage": "https://facebook.github.io/relay/",
"bugs": "https://github.com/facebook/relay/issues",
"repository": "facebook/relay",
"scripts": {
"build": "gulp",
"jest": "NODE_ENV=test jest \"$@\"",
"lint": "eslint .",
"prepublish": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json && npm run build",
"prettier": "find . -name node_modules -prune -or -name '*.js' -print | xargs grep -l '@format' | xargs prettier --single-quote --trailing-comma all --no-bracket-spacing --jsx-bracket-same-line --parser flow --write",
"test": "f() { EXIT=0; npm run typecheck || EXIT=$?; npm run jest \"$@\" || EXIT=$?; exit $EXIT; }; f",
"typecheck": "flow check"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-generator": "6.25.0",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-regenerator": "6.24.1",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "6.23.0",
"babel-preset-fbjs": "2.1.3",
"babel-runtime": "6.23.0",
"babel-traverse": "6.25.0",
"babel-types": "6.25.0",
"babylon": "6.18.0",
"chalk": "^1.1.3",
"create-react-class": "^15.6.0",
"del": "2.2.2",
"eslint": "3.19.0",
"eslint-config-fbjs": "1.1.1",
"eslint-plugin-babel": "3.3.0",
"eslint-plugin-flowtype": "2.30.4",
"eslint-plugin-react": "5.2.2",
"event-stream": "3.3.4",
"fast-glob": "^1.0.1",
"fb-watchman": "2.0.0",
"fbjs": "0.8.14",
"fbjs-scripts": "0.7.1",
"flow-bin": "0.53.0",
"graphql": "^0.10.5",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-chmod": "2.0.0",
"gulp-derequire": "2.1.0",
"gulp-flatten": "0.3.1",
"gulp-header": "1.8.8",
"gulp-util": "3.0.8",
"immutable": "3.7.6",
"iterall": "1.0.3",
"jest": "^21.0.1",
"object-assign": "4.1.1",
"prettier": "1.5.2",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-static-container": "1.0.1",
"react-test-renderer": "^15.5.4",
"relay-debugger-react-native-runtime": "^0.0.10",
"run-sequence": "1.2.2",
"signedsource": "1.0.0",
"webpack": "1.13.1",
"webpack-stream": "3.2.0",
"yargs": "7.0.2"
},
"private": true,
"devEngines": {
"node": ">=4.x",
"npm": ">=2.x"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/lib/",
"<rootDir>/packages/(.*).native.js",
"<rootDir>/node_modules/(?!(fbjs/lib/|react/lib/|fbjs-scripts/jest))"
],
"rootDir": "",
"roots": [
"<rootDir>/node_modules/fbjs/lib/",
"<rootDir>/node_modules/fbjs-scripts/jest",
"<rootDir>/node_modules/react/lib/",
"<rootDir>/node_modules/react-static-container/lib/",
"<rootDir>/packages/"
],
"setupFiles": [
"<rootDir>/node_modules/fbjs-scripts/jest/environment.js",
"<rootDir>/scripts/jest/environment.js"
],
"timers": "fake",
"transform": {
".*": "<rootDir>/scripts/jest/preprocessor.js"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/fbjs-scripts/",
"<rootDir>/node_modules/fbjs/lib/(?!(ErrorUtils.js$|fetch.js$|fetchWithRetries.js$))",
"<rootDir>/node_modules/fbjs/node_modules/core-js/",
"<rootDir>/node_modules/fbjs/node_modules/promise/",
"<rootDir>/node_modules/object-assign/",
"<rootDir>/node_modules/prop-types/",
"<rootDir>/node_modules/react-dom/",
"<rootDir>/node_modules/react-static-container/",
"<rootDir>/node_modules/react/"
]
}
}