This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
/
package.json
70 lines (70 loc) · 1.67 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
{
"name": "flux",
"version": "4.0.4",
"description": "An application architecture based on a unidirectional data flow",
"keywords": [
"flux",
"react",
"facebook",
"dispatcher"
],
"homepage": "https://facebookarchive.github.io/flux/",
"bugs": "https://github.com/facebookarchive/flux/issues",
"files": [
"LICENSE",
"PATENTS",
"README.md",
"index.js",
"lib",
"utils.js",
"dist"
],
"main": "index.js",
"scripts": {
"build": "gulp build",
"prepublish": "gulp publish",
"test": "NODE_ENV=test jest"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/flux"
},
"author": "Facebook",
"contributors": [
"Jing Chen <jingc@fb.com>",
"Bill Fisher <fisherwebdev@gmail.com>",
"Paul O'Shannessy <paul@oshannessy.com>",
"Kyle Davis <kyldvs@gmail.com>",
"Yangshun Tay <tay.yang.shun@gmail.com>"
],
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.12.10",
"babel-loader": "^8.1.0",
"babel-preset-fbjs": "^3.3.0",
"del": "^2.2.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-flatten": "^0.2.0",
"gulp-header": "1.8.2",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.6",
"immutable": "^3.7.4",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"object-assign": "^4.0.1",
"react": "^17.0.1",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^17.0.1",
"vinyl-source-stream": "^1.0.0",
"webpack": "^1.11.0",
"webpack-stream": "^3.1.0"
},
"dependencies": {
"fbemitter": "^3.0.0",
"fbjs": "^3.0.1"
},
"peerDependencies": {
"react": "^15.0.2 || ^16.0.0 || ^17.0.0"
}
}