-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.86 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
{
"scripts": {
"prepublish": "babel src --out-dir lib",
"clean-build": "rm -rf ./lib && npm run prepublish",
"start": "babel src --out-dir lib --watch",
"test": "cross-env NODE_ENV=test BABEL_DISABLE_CACHE=1 mocha --opts test/mocha.opts"
},
"name": "reget",
"version": "0.10.3",
"description": "React reactive cache for any async calls, http fetching, or memory store accesses",
"main": "./lib/index.js",
"module": "./lib/index.js",
"jsnext:main": "./lib/index.js",
"directories": {
"lib": "./lib"
},
"dependencies": {
"js-cookie": "^2.1.3",
"lodash": "^4.16.4",
"path-to-regexp": "^1.6.0",
"querystring-stable-stringify": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-runtime": "^6.11.6",
"cross-env": "^3.1.3",
"enzyme": "^2.5.1",
"eslint": "^3.8.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-lodash": "^2.1.3",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-react": "^6.4.1",
"js-cookie": "^2.1.3",
"jsdom": "^9.8.0",
"mocha": "^3.1.2",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"should": "^11.1.1",
"sinon": "^1.17.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericfong/reget.git"
},
"keywords": [
"react",
"reactive",
"cache",
"fetch",
"http",
"sync",
"async"
],
"author": "Eric Fong",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericfong/reget/issues"
},
"homepage": "https://github.com/ericfong/reget#readme"
}