-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "redux-cookie",
"version": "0.5.9",
"description": "Redux cookie middleware for both client and server ( universal )",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "rimraf lib && npm run build",
"lint": "eslint src; exit 0;",
"test": "mocha --compilers js:babel-core/register --recursive src/__tests__"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iroy2000/redux-cookie.git"
},
"homepage": "https://github.com/iroy2000/redux-cookie",
"keywords": [
"redux",
"cookie",
"middleware",
"redux-middleware",
"flux"
],
"author": "Roy Yu <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"eslint": "<2.3.0",
"eslint-config-standard": "5.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.1",
"mocha": "^2.5.3",
"redux": "^3.5.2",
"rimraf": "^2.5.2",
"sinon": "^1.17.5"
},
"bugs": {
"url": "https://github.com/iroy2000/redux-cookie/issues"
},
"dependencies": {}
}