forked from facebookarchive/flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.07 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
{
"name": "flux",
"version": "2.0.2",
"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": [
"index.js",
"lib/",
"LICENSE",
"PATENTS"
],
"main": "index.js",
"scripts": {
"prepublish": "gulp publish",
"test": "jest"
},
"jest": {
"rootDir": "src",
"scriptPreprocessor": "../jest-preprocessor.js"
},
"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@oshanessy.com>"
],
"license": "BSD",
"devDependencies": {
"browserify": "^5.9.1",
"del": "^0.1.2",
"gulp": "^3.8.6",
"gulp-react": "^2.0.0",
"gulp-replace": "^0.4.0",
"jest-cli": "~0.1.17",
"react-tools": "^0.12.0",
"vinyl-source-stream": "^0.1.1"
}
}