-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 2.69 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-services",
"version": "1.0.0",
"description": "Wrap Feathers services so they work transparently and perfectly with Redux.",
"main": "lib/",
"directories": {
"lib": "lib"
},
"scripts": {
"copy": "shx rm -rf lib/ && shx 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:es6": "mocha test/ --reporter spec",
"eslint": "eslint src/reduxifyServices.js --ext .js,.jsx .",
"build": "npm run copy && npm run babel",
"testx": "npm run build && npm run eslint && npm run mocha",
"test": "npm run build && npm run mocha",
"test:es6": "npm run mocha:es6",
"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-services.git"
},
"keywords": [
"feathers",
"feathersjs",
"hook",
"hooks",
"service",
"services",
"redux",
"action creator",
"actioncreator",
"reducer"
],
"author": "John Szwaronek <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eddyystop/feathers-reduxify-services/issues"
},
"homepage": "https://github.com/eddyystop/feathers-reduxify-services#readme",
"dependencies": {
"debug": "2.6.3",
"redux-actions": "2.0.2"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.2",
"babel-loader": "6.4.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-es2015-destructuring": "6.23.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"chai": "3.5.0",
"coveralls": "2.13.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"feathers-tests-fake-app-users": "^1.0.0",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"shx": "0.2.2"
},
"engines": {
"node": ">= 4.6.0"
}
}