forked from yahoo/fetchr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "fetchr",
"version": "0.5.30",
"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": "NODE_ENV=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",
"es6-promise": "^3.0.2",
"fumble": "^0.1.0",
"lodash": "^4.0.1",
"object-assign": "^4.0.1",
"xhr": "^2.0.0"
},
"devDependencies": {
"body-parser": "^1.12.2",
"chai": "^3.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",
"pre-commit": "^1.0.0",
"qs": "^4.0.0",
"request": "^2.61.0",
"sinon": "^1.17.3",
"supertest": "^1.0.1"
},
"jshintConfig": {
"node": true
},
"keywords": [
"yahoo",
"flux",
"react",
"fetchr",
"dispatchr"
]
}