-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.06 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
{
"name": "feathers-redux-immutable",
"version": "0.1.0",
"description": "An immutable, redux data store for FeathersJS services.",
"main": "lib/index.js",
"scripts": {
"compile": "shx rm -rf lib/ && babel -d lib/ src/",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage:open": "open ./coverage/index.html",
"lint": "eslint src/**/*.js test/**/*.js",
"prepublish": "npm run compile",
"publish": "git push origin --tags && git push origin",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"test": "cross-env NODE_ENV=test nyc mocha src/**/*.spec.js test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/collegepulse/feathers-redux-immutable.git"
},
"keywords": [
"feathers",
"redux",
"immutable"
],
"author": "Peter Mikitsh",
"license": "MIT",
"bugs": {
"url": "https://github.com/collegepulse/feathers-redux-immutable/issues"
},
"homepage": "https://github.com/collegepulse/feathers-redux-immutable#readme",
"directories": {
"lib": "lib"
},
"peerDependencies": {
"timm": "1.x"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-plugin-espower": "2.3.2",
"babel-plugin-istanbul": "4.1.4",
"babel-preset-es2015": "6.24.1",
"babel-preset-power-assert": "1.0.0",
"coveralls": "2.13.1",
"cross-env": "5.0.1",
"eslint": "4.3.0",
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"feathers": "2.1.7",
"feathers-memory": "1.1.0",
"feathers-offline-realtime-immutable": "0.3.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "3.4.2",
"nyc": "11.1.0",
"power-assert": "1.4.4",
"redux": "3.7.2",
"redux-promise-middleware": "4.3.0",
"redux-thunk": "2.2.0",
"shx": "0.2.2",
"timm": "1.2.5"
},
"dependencies": {
"redux-actions": "2.2.1"
}
}