-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.16 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
{
"name": "lcars",
"version": "1.1.1",
"description": "A queued flux dispatcher",
"keywords": [
"flux",
"react",
"rectjs",
"dispatcher"
],
"license": "MIT",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "[email protected]:sstate/lcars.git"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"lint": "eslint ./src",
"test": "jest"
},
"browserify": {
"transform": [
[
"reactify",
{
"ext": ".js"
}
]
]
},
"jest": {
"scriptPreprocessor": "./util/jest_preprocessor.js",
"unmockedModulePathPatterns": [
"./node_modules/react"
],
"testFileExtensions": [
"js"
]
},
"devDependencies": {
"browserify": "^8.1.3",
"eslint": "^0.14.1",
"jest-cli": "^0.2.2",
"reactify": "^1.0.0",
"watchify": "^2.3.0",
"react": "^0.13.0",
"react-tools": "^0.13.0"
},
"dependencies": {
"amp-extend": "^1.0.1",
"queue": "^3.0.10",
"flux": "2.1.x"
},
"author": "mattwondra <[email protected]> (http://mattwondra.com/)",
"contributors": [
"rtorr <[email protected]> (http://rtorr.com/)"
]
}