forked from yahoo/fetchr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.27 KB
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
{
"name": "fetchr",
"version": "0.5.8",
"description": "Fetchr augments Flux applications by allowing Flux stores to be used on server and client to fetch data",
"main": "index.js",
"browser": "./libs/fetcher.client.js",
"scripts": {
"cover": "istanbul cover --dir artifacts -- ./node_modules/mocha/bin/_mocha tests/unit/ --recursive --reporter spec",
"lint": "jshint libs tests",
"test": "mocha tests/unit/ --recursive --reporter spec"
},
"repository": {
"type": "git",
"url": "git@github.com:yahoo/fetchr"
},
"author": "Rajiv Tirumalareddy <rajivtirum@yahoo-inc.com>",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/yahoo/fetchr/blob/master/LICENSE.md"
}
],
"dependencies": {
"debug": "^2.0.0",
"lodash": "^3.3.0",
"xhr": "^2.0.0"
},
"devDependencies": {
"body-parser": "^1.12.2",
"chai": "^2.0.0",
"coveralls": "^2.11.1",
"express": "^4.12.3",
"istanbul": "^0.3.2",
"jshint": "^2.5.1",
"mocha": "^2.0.1",
"mockery": "^1.4.0",
"precommit-hook": "^1.0.2",
"qs": "^2.4.1",
"request": "^2.55.0",
"supertest": "^0.15.0"
},
"jshintConfig": {
"node": true
},
"keywords": [
"yahoo",
"flux",
"react",
"fetchr",
"dispatchr"
]
}