-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
60 lines (60 loc) · 1.78 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
{
"name": "meteor-redux-middlewares",
"version": "3.0.7",
"description": "Middlewares to sync meteor reactive sources with redux store",
"main": "lib/index.js",
"repository": {
"url": "git@github.com:samybob1/meteor-redux-middlewares.git",
"type": "git"
},
"author": "Samy Laumonier <samy.laumonier@gmail.com> (https://github.com/samybob1)",
"contributors": [
"Kyle Chamberlain <kchamb3@gmail.com> (https://github.com/Koleok)",
"Manur (https://github.com/ReggaePanda)",
"Jon Moniaci (https://github.com/corporealfunk)"
],
"license": "MIT",
"keywords": [
"action",
"meteor",
"middleware",
"reactive",
"redux",
"subscription",
"tracker"
],
"homepage": "https://github.com/samybob1/meteor-redux-middlewares",
"bugs": {
"url": "https://github.com/samybob1/meteor-redux-middlewares/issues",
"email": "samy.laumonier@gmail.com"
},
"scripts": {
"test:watch": "npm test -- --watch",
"test": "./node_modules/.bin/jest --config jest.json",
"lint": "./node_modules/.bin/eslint .",
"clean": "./node_modules/.bin/rimraf lib",
"compile": "./node_modules/.bin/babel src -d lib",
"build": "npm run clean && npm run compile",
"watch": "watch 'npm run build' src/ -d"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-jest": "^18.0.0",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.1.5",
"babel-register": "^6.18.0",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"flux-standard-action": "^1.0.0",
"jest-cli": "^18.1.0",
"redux": "^3.6.0",
"redux-mock-store": "^1.2.1",
"rimraf": "^2.5.4"
},
"dependencies": {
"sanctuary": "^0.11.1"
}
}