This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.93 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
{
"name": "finish-line",
"version": "0.3.2",
"description": "Helpful components and tools to build React and Relay applications more quickly and easily",
"main": "index.js",
"module": "es/index.js",
"files": [
"createEnvironment.js",
"createFetchQuery",
"es",
"index.js",
"RelayEnvironmentProvider.js",
"RelayEnvironment.js",
"RelayRenderer.js",
"warn.js",
"withRelayEnvironment.js"
],
"scripts": {
"build": "node ./tools/build.js",
"clean:light": "git clean -fdx . -e node_modules",
"clean:hard": "git clean -fdX",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch",
"validate": "yarn lint && yarn test",
"verify-and-publish": "yarn clean:light && yarn validate && yarn build && yarn publish"
},
"keywords": [
"react",
"relay",
"component"
],
"author": "Michael Crismali",
"license": "MIT",
"dependencies": {
"hoist-non-react-statics": "^2.3.1",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": ">=16.3",
"react-relay": ">=1.1",
"relay-runtime": ">=1.1"
},
"jest": {
"clearMocks": true,
"resetModules": true,
"rootDir": "src",
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupTestFrameworkScriptFile": "../node_modules/jest-enzyme/lib/index.js",
"setupFiles": [
"../jest/setup.js"
],
"modulePaths": [
"<rootDir>/../jest/"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^21.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.8",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"eslint": "^4.18.0",
"eslint-config-devmynd": "^0.1.2",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-flowtype": "^2.44.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-standard": "^3.0.1",
"gzip-size": "^3.0.0",
"jest": "^22.2.2",
"jest-enzyme": "^4.2.0",
"jest-fetch-mock": "^1.2.1",
"lodash": "^4.17.4",
"pretty-bytes": "^4.0.2",
"react": "^16.3.0",
"react-addons-test-utils": "^16.3.0",
"react-dom": "^16.3.0",
"react-relay": "^1.3.0",
"react-test-renderer": "^16.3.0",
"relay-compiler": "^1.3.0",
"relay-runtime": "^1.3.0",
"rollup": "^0.49.2",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^2.0.1",
"whatwg-fetch": "^2.0.3"
}
}