This repository was archived by the owner on Sep 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.72 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
{
"name": "@marklogic-community/grove-search-redux",
"version": "1.0.0",
"description": "Redux module to power MarkLogic search UIs",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "eslint . && webpack -p",
"build:dev": "npm run lint && webpack --mode=development",
"test": "npm run lint && jest",
"test:watch": "npm run lint && jest --watch"
},
"jest": {
"testURL": "http://localhost"
},
"repository": {
"type": "git",
"url": "[email protected]:marklogic-community/grove-search-redux.git"
},
"keywords": [
"Redux",
"MarkLogic",
"Search"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/marklogic-community/grove-search-redux/issues"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^21.0.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"deep-freeze": "0.0.1",
"eslint": "^5.6.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"jest": "^21.1.0",
"nock": "^9.0.14",
"prettier": "^1.13.7",
"redux": "^4.0.0",
"redux-mock-store": "^1.2.3",
"redux-thunk": "~2",
"webpack": "^3.5.5"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.11"
},
"peerDependencies": {
"redux": "^2.0.0 || ^3.0.0 || ^4.0.0-0"
},
"contributors": [
{
"name": "Matt Pileggi",
"url": "https://github.com/withjam"
},
{
"name": "Marianne Myers",
"url": "https://github.com/mariannemyers"
},
{
"name": "Geert Josten",
"url": "https://github.com/grtjn"
}
]
}