-
Notifications
You must be signed in to change notification settings - Fork 241
/
package.json
66 lines (66 loc) · 2.56 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
{
"name": "redux-auth-wrapper",
"version": "3.0.0",
"main": "index.js",
"description": "A utility library for handling authentication and authorization for redux and react-router",
"scripts": {
"build": "mkdirp lib && babel ./src --out-dir ./lib",
"build:clean": "rimraf ./lib",
"build:copyFiles": "cp -rf package.json LICENSE.txt README.md lib/.",
"dist": "cd lib && yarn publish",
"dist:prepare": "yarn run build:clean && yarn run build && yarn run build:copyFiles",
"lint": "eslint src test examples",
"test": "mocha --compilers js:babel-core/register --recursive --require test/init.js test/authWrapper-test.js",
"test:cov": "babel-node --max-old-space-size=4076 $(yarn bin)/babel-istanbul cover $(yarn bin)/_mocha -- --require test/init.js test/authWrapper-test.js",
"test:watch": "mocha --compilers js:babel-core/register --recursive --require test/init.js -w test/authWrapper-test.js",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "yarn run docs:prepare && gitbook build",
"docs:watch": "yarn run docs:prepare && gitbook serve",
"docs:publish": "yarn run docs:clean && yarn run docs:build && cp README.md _book && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:mjrussell/redux-auth-wrapper gh-pages --force"
},
"repository": {
"type": "git",
"url": "https://github.com/mjrussell/redux-auth-wrapper.git"
},
"authors": [
"Matthew Russell"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "10.0.3",
"babel-istanbul": "0.12.2",
"babel-plugin-transform-decorators-legacy": "1.3.5",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"chai": "4.2.0",
"coveralls": "3.0.9",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "6.8.0",
"eslint-plugin-react": "7.17.0",
"expect": "24.9.0",
"gitbook-cli": "2.3.2",
"jsdom": "15.2.1",
"lodash": "4.17.21",
"mkdirp": "0.5.1",
"mocha": "6.2.2",
"prop-types": "^15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-redux": "7.1.3",
"redux": "4.0.5",
"rimraf": "3.0.0",
"sinon": "8.0.2"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"invariant": "^2.2.4",
"lodash.isempty": "^4.4.0",
"query-string": "^6.9.0"
}
}