forked from facebookarchive/flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
{
"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": "../node_modules/babel-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@oshanessy.com>"
],
"license": "BSD-3-Clause",
"devDependencies": {
"babel-jest": "^5.2.0",
"browserify": "^9.0.3",
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-babel": "^5.1.0",
"gulp-replace": "^0.5.3",
"jest-cli": "^0.4.3",
"run-sequence": "^1.0.2",
"vinyl-source-stream": "^1.0.0"
}
}