forked from TuxedoJS/TuxedoJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.54 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
{
"name": "tuxx",
"version": "0.1.0",
"description": "Framework built on React and Flux",
"main": "Tuxedo.js",
"scripts": {
"test": "jest",
"start": "watchify --extension=.jsx -d Tuxedo.js -o bundle.js -v"
},
"browserify": {
"transform": [
[
"reactify",
{
"es6": true
}
],
"envify"
]
},
"repository": {
"type": "git",
"url": "https://github.com/TuxedoJS/TuxedoJS"
},
"keywords": [
"TuxedoJs",
"Tuxx",
"tuxx",
"tuxedoJS",
"tuxedo",
"Tuxedo"
],
"author": "drabinowitz, cheerazar, plauer, sjstebbins",
"license": "MIT",
"bugs": {
"url": "https://github.com/TuxedoJS/TuxedoJS/issues"
},
"homepage": "https://github.com/TuxedoJS/TuxedoJS",
"dependencies": {
"arrival": "^1.0.0",
"browserify": "^8.0.2",
"envify": "^3.2.0",
"events": "^1.0.2",
"flux": "^2.0.1",
"object-assign": "^2.0.0",
"react": "^0.12.2",
"react-router": "^0.11.6",
"react-validating-form": "^0.1.1",
"reactify": "^0.17.1",
"watchify": "^2.2.1"
},
"devDependencies": {
"jest": "^0.1.37",
"jest-cli": "^0.2.1",
"react-tools": "^0.12.2"
},
"jest": {
"scriptPreprocessor": "jest-preprocessor.js",
"moduleFileExtensions": [
"js",
"json",
"jsx"
],
"unmockedModulePathPatterns": [
"src/TuxxInvariant",
"src/TuxxDeepSearch",
"node_modules/react/",
"node_modules/object-assign/",
"Animations/Common"
]
},
"directories": {
"doc": "docs"
}
}