-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
65 lines (65 loc) · 1.98 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
{
"name": "redux-filter",
"version": "2.1.3",
"description": "Higher order react component for filtering collections",
"main": "./lib/index.js",
"scripts": {
"dev": "babel src --out-dir lib --watch",
"test-watch": "mocha --compilers js:babel/register --watch",
"lint": "eslint src test --fix",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/redux-filter.js --config webpack.dist.config.js",
"build": "npm run build:lib && npm run build:umd",
"clean": "rm -rf lib && rm -rf dist",
"prepublish": "npm run clean && npm run build",
"test": "istanbul cover _mocha -- --compilers js:babel-register test",
"test-debug": "node-debug _mocha --compilers --debug-brk",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "[email protected]:nsmith7989/redux-filter.git"
},
"keywords": [
"react",
"redux",
"filter"
],
"author": "Nathanael Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/nsmith7989/redux-filter/issues"
},
"homepage": "https://github.com/nsmith7989/redux-filter",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^4.1.8",
"babel-loader": "^5.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"coveralls": "^2.11.4",
"eslint": "^1.6.0",
"eslint-plugin-react": "^3.5.1",
"expect": "^1.12.0",
"istanbul": "^0.4.1",
"jsdom": "^6.5.1",
"mocha-jsdom": "^1.0.0",
"react-addons-test-utils": "^0.14.0",
"react-hot-loader": "^1.3.0",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.8.2"
},
"dependencies": {
"babel-loader": "^6.2.4",
"fuse.js": "^1.2.2",
"lodash.find": "^3.2.1",
"lodash.matches": "^3.1.0",
"lodash.omit": "^3.1.0",
"mocha": "^2.3.4",
"react": "^0.14.0",
"redux": "^3.0.0",
"redux-thunk": "^1.0.0",
"reselect": "^1.1.0"
}
}