This repository has been archived by the owner on Jan 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.88 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
71
72
{
"name": "@marklogic-community/grove-react-visjs-graph",
"version": "1.0.0-rc.2",
"description": "React components to visualize RDF relationships",
"main": "dist/index.js",
"scripts": {
"build": "npm run lint && webpack -p",
"build:dev": "npm run lint && webpack --mode=development",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "npm run lint && jest",
"test:watch": "npm run lint && jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/marklogic-community/grove-react-visjs-graph"
},
"keywords": [
"MarkLogic",
"Grove",
"visjs",
"graph",
"RDF",
"SPARQL",
"visualization",
"UI"
],
"author": "Patrick McElwee <[email protected]> (marklogic.com)",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.2",
"canvas-prebuilt": "^1.6.11",
"css-loader": "^1.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"jest": "^24.7.1",
"nock": "^9.6.1",
"prettier": "^1.14.2",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"style-loader": "^0.23.0",
"webpack": "^4.18.0",
"webpack-cli": "^3.1.0"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"dependencies": {
"babel-core": "^7.0.0-bridge.0",
"isomorphic-fetch": "^2.2.1",
"ml-visjs-graph": "^0.5.1",
"regenerator-runtime": "^0.12.1"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/test/styleMock.js"
},
"setupFilesAfterEnv": [
"<rootDir>/test/setupTests.js"
]
}
}