forked from yahoo/fetchr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "fetchr",
"version": "0.4.7",
"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": "node node_modules/istanbul/lib/cli.js cover --dir artifacts -- ./node_modules/mocha/bin/_mocha tests/unit/ --recursive --reporter spec",
"lint": "./node_modules/.bin/jshint libs tests",
"test": "./node_modules/.bin/mocha tests/unit/ --recursive --reporter spec"
},
"repository": {
"type": "git",
"url": "[email protected]:yahoo/fetchr"
},
"author": "Rajiv Tirumalareddy <[email protected]>",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/yahoo/fetchr/blob/master/LICENSE.md"
}
],
"dependencies": {
"debug": "^2.0.0",
"lodash": "^3.3.0",
"object-assign": "^2.0.0",
"xhr": "^2.0.0"
},
"devDependencies": {
"chai": "^2.0.0",
"coveralls": "^2.11.1",
"istanbul": "^0.3.2",
"jshint": "^2.5.1",
"mocha": "^2.0.1",
"mockery": "^1.4.0",
"precommit-hook": "^1.0.2"
},
"jshintConfig": {
"node": true
},
"keywords": [
"yahoo",
"flux",
"react",
"fetchr",
"dispatchr"
]
}