forked from facebookarchive/flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "flux",
"version": "2.0.3",
"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": "^9.0.3",
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-clean": "^0.3.1",
"gulp-react": "^2.0.0",
"gulp-replace": "^0.5.3",
"jest-cli": "^0.4.0",
"react-tools": "^0.12.0",
"run-sequence": "^1.0.2",
"vinyl-source-stream": "^1.0.0"
}
}