-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
66 lines (66 loc) · 1.41 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
{
"name": "mcfly",
"version": "1.0.0",
"description": "Flux architecture made easy",
"keywords": [
"flux",
"react",
"mcfly"
],
"files": [
"index.js",
"lib/",
"LICENSE"
],
"main": "index.js",
"author": "Ken Wheeler",
"repository": {
"type": "git",
"url": "https://github.com/kenwheeler/mcfly"
},
"bugs": "https://github.com/kenwheeler/mcfly/issues",
"license": "BSD",
"scripts": {
"test": "jest",
"build": "gulp clean && gulp lib"
},
"jest": {
"rootDir": "src",
"scriptPreprocessor": "<rootDir>/../node_modules/babel-jest/src/index.js",
"unmockedModulePathPatterns": [
"node_modules(/|\\\\)object-assign",
"node_modules(/|\\\\)flux",
"node_modules(/|\\\\)invariant"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"testFileExtensions": [
"js",
"jsx"
],
"globals": {
"__DEV__": true
}
},
"dependencies": {
"flux": "^2.1.1",
"invariant": "^2.2.1",
"object-assign": "^4.1.0"
},
"devDependencies": {
"babel-jest": "^12.1.0",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"browserify": "^5.9.1",
"del": "^0.1.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-replace": "^0.5.4",
"jest-cli": "^12.1.1",
"vinyl-source-stream": "^0.1.1"
}
}