-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
{
"name": "fluxible-immutable-utils",
"author": "[email protected]",
"description": "A collection of utilities that provide convenience methods for using Immutable.js with a fluxible based application",
"version": "0.5.10",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/yahoo/fluxible-immutable-utils"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jenkins-mocha tests --recursive"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
},
"dependencies": {
"create-react-class": "^15.5.0",
"fluxible": "^1.4.0",
"fluxible-addons-react": "^0.2.12",
"immutable": "^3.8.1",
"inherits": "^2.0.3",
"shallowequal": "^1.0.1"
},
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^2.13.1",
"eslint": "^4.0.0",
"filter-invalid-dom-props": "^1.0.0",
"jenkins-mocha": "^4.1.2",
"jsx-test": "^2.0.1",
"pre-commit": "^1.2.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"sinon": "^2.3.4"
},
"pre-commit": [
"test"
],
"contributors": [
"Mo Kouli <[email protected]>",
"Marcelo Eden <[email protected]>",
"Akshay Patel <[email protected]>"
],
"license": "BSD-3-Clause",
"keywords": [
"yahoo",
"immutable",
"immutablejs",
"immutable.js",
"fluxible",
"react",
"flux"
]
}