-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 2.79 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "feathers-reduxify-authentication",
"version": "1.0.0",
"description": "Wrap feathers-client.authentication so it works with Redux, as well as authentication, authorization packages for React-Router.",
"files": [
"index.js",
"test"
],
"main": "lib/",
"directories": {
"lib": "lib"
},
"scripts": {
"copy": "rm -rf lib/ && mkdir lib && cp -r src/ lib/",
"babel": "babel src/ --out-dir lib --presets babel-preset-es2015,babel-preset-stage-0",
"babel:watch": "babel src/ --watch --out-dir lib --presets babel-preset-es2015,babel-preset-stage-0",
"mocha": "mocha test/ --reporter spec --compilers js:babel-core/register",
"mocha:only": "mocha test/ --reporter spec",
"eslint": "eslint src/. test/. --ext .js,.jsx .",
"build": "npm run copy && npm run babel",
"test": "npm run build && npm run eslint && npm run mocha",
"test:build": "npm run build && npm run mocha",
"test:only": "npm run eslint && npm run mocha:only",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- --reporter spec test/*",
"watch": "npm run copy && npm run babel:watch",
"git:push": "npm run build && git push origin && git push origin --tags",
"npm:patch": "npm version patch && npm publish",
"npm:minor": "npm version minor && npm publish",
"npm:major": "npm version major && npm publish",
"npm:updates": "npm-check-updates"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eddyystop/feathers-reduxify-authentication.git"
},
"keywords": [
"feathers",
"feathersjs",
"authentication",
"react-router",
"redux"
],
"author": "John Szwaronek <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eddyystop/feathers-reduxify-authentication/issues"
},
"homepage": "https://github.com/eddyystop/feathers-reduxify-authentication#readme",
"dependencies": {
"debug": "^2.2.0",
"object.assign": "^4.0.4"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsdoc": "^2.3.1",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.1",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"redux-actions": "0.12.0"
},
"engines": {
"node": ">=5.0.0",
"npm": ">=3.8.0"
}
}