forked from facebookarchive/flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.88 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
{
"name": "flux",
"version": "2.1.1",
"description": "An application architecture based on a unidirectional data flow",
"keywords": [
"flux",
"react",
"facebook",
"dispatcher"
],
"homepage": "http://facebook.github.io/flux/",
"bugs": "https://github.com/facebook/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 <[email protected]>",
"Bill Fisher <[email protected]>",
"Paul O'Shannessy <[email protected]>",
"Kyle Davis <[email protected]>"
],
"license": "BSD-3-Clause",
"devDependencies": {
"babel-core": "^5.8.22",
"babel-loader": "^5.3.2",
"del": "^2.2.0",
"fbjs-scripts": "^0.5.0",
"gulp": "^3.9.0",
"gulp-babel": "^5.1.0",
"gulp-flatten": "^0.2.0",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.6",
"jest-cli": "^0.5.10",
"object-assign": "^4.0.1",
"run-sequence": "^1.1.0",
"vinyl-source-stream": "^1.0.0",
"webpack": "^1.11.0",
"webpack-stream": "^3.1.0"
},
"dependencies": {
"fbemitter": "^2.0.0",
"fbjs": "^0.6.1",
"immutable": "^3.7.4"
},
"jest": {
"modulePathIgnorePatterns": [
"/lib/",
"/node_modules/"
],
"persistModuleRegistryBetweenSpecs": true,
"preprocessorIgnorePatterns": [
"/node_modules/"
],
"rootDir": "",
"scriptPreprocessor": "scripts/jest/preprocessor.js",
"setupEnvScriptFile": "scripts/jest/environment.js",
"testPathDirs": [
"<rootDir>/src"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/(?!fbemitter)"
]
}
}