-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 950 Bytes
/
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
{
"name": "@brainstaff/graph-reselect",
"version": "1.0.0-beta.2",
"description": "This library enables graph-like queries for Redux-Reselect-Immutable environment.",
"main": "dist/index.js",
"repository": "https://github.com/brainstaff/js-graph-reselect",
"author": "Alexey Kornilov <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf dist",
"build": "rollup -c rollup.config.js",
"test": "mocha --recursive --compilers js:babel-core/register"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"chai": "^4.1.2",
"flow-bin": "^0.76.0",
"immutable": "^3.8.2",
"mocha": "^5.2.0",
"reselect": "^3.0.1",
"rollup": "^0.63.2",
"rollup-plugin-babel": "^3.0.7"
},
"peerDependencies": {
"immutable": "^3.8.0",
"reselect": "^3.0.0"
}
}