forked from mjrussell/redux-auth-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.77 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.77 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
53
54
55
56
57
{
"name": "redux-auth-wrapper",
"version": "0.3.0",
"description": "A utility library for handling authentication and authorization for redux and react-router",
"main": "lib/index.js",
"files": [
"*.md",
"LICENSE",
"lib",
"src"
],
"scripts": {
"build": "mkdir -p lib && babel ./src/index.js --out-file ./lib/index.js",
"lint": "eslint src test",
"prepublish": "rm -rf lib && npm run build",
"test": "mocha --compilers js:babel-core/register --recursive --require test/init.js test/**/*-test.js",
"test:cov": "babel-node $(npm bin)/babel-istanbul cover $(npm bin)/_mocha -- --require test/init.js test/**/*-test.js",
"test:watch": "mocha --compilers js:babel-core/register --recursive --require test/init.js -w test/**/*-test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mjrussell/redux-auth-wrapper.git"
},
"authors": [
"Matthew Russell"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-core": "^6.0.0",
"babel-eslint": "^5.0.0-beta6",
"babel-istanbul": "^0.7.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.4.1",
"coveralls": "^2.11.6",
"eslint": "^1.7.1",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-react": "~3.16.0",
"expect": "^1.10.0",
"jsdom": "~8.1.0",
"mocha": "^2.3.4",
"react": "~0.14.3",
"react-addons-test-utils": "^0.14.6",
"react-redux": "^4.0.1",
"react-router": "2.0.1",
"react-router-redux": "~4.0.0",
"redux": "^3.2.0"
},
"dependencies": {
"hoist-non-react-statics": "1.0.5",
"lodash.isempty": "4.1.3"
}
}