-
Notifications
You must be signed in to change notification settings - Fork 325
/
package.json
95 lines (95 loc) · 3.17 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "neovis.js",
"version": "2.1.0",
"description": "Graph visualizations powered by vis.js with data from Neo4j.",
"main": "./dist/neovis.js",
"module": "./dist/neovis-without-dependencies.js",
"types": "./dist/neovis.d.ts",
"directories": {
"doc": "doc",
"example": "examples",
"test": "`__tests__"
},
"scripts": {
"test": "run-p test:*",
"test:jest": "jest __tests__/neovis.tests.ts",
"test:types": "tsc --esModuleInterop --allowSyntheticDefaultImports --moduleResolution Node --target esnext --noemit ./__tests__/neovis.tests.ts",
"eslint": "eslint .",
"prepublishOnly": "run-s typedoc build",
"clean": "rimraf ./dist",
"build": "run-s clean build:prod",
"build:typings": "tsc",
"build-dev": "run-s clean build:dev",
"build:prod": "run-p build:typings build:prod:*",
"build:prod:with-dependencies": "cross-env BUILD_WITH_DEPENDENCIES=true webpack --mode=production",
"build:prod:without-dependencies": "webpack --mode=production",
"build:dev": "run-p build:typings build:dev:*",
"build:dev:with-dependencies": "cross-env BUILD_WITH_DEPENDENCIES=true webpack --mode=development",
"build:dev:without-dependencies": "webpack --mode=development",
"typedoc": "typedoc src/neovis.ts --out docs/ --excludePrivate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neo4j-contrib/neovis.js.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/neo4j-contrib/neovis.js/issues"
},
"homepage": "https://github.com/neo4j-contrib/neovis.js#readme",
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@egjs/hammerjs": "^2.0.17",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"babel-loader": "^9.1.2",
"component-emitter": "^1.3.0",
"core-js": "^3.30.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"eslint": "^8.40.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"jest-canvas-mock": "^2.5.0",
"jest-environment-jsdom": "^29.5.0",
"keycharm": "^0.4.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.0",
"style-loader": "^3.3.2",
"timsort": "^0.3.0",
"typedoc": "^0.24.7",
"typescript": "^5.0.4",
"uuid": "^9.0.0",
"vis-data": "^7.1.6",
"vis-util": "^5.0.3",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.0"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.21.5",
"deepmerge": "^4.3.1",
"neo4j-driver": "^4.4.6",
"neo4j-driver-core": "^4.4.6",
"vis-network": "^9.1.6"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"setupFiles": [
"jest-canvas-mock"
],
"transformIgnorePatterns": [
"node_modules[/\\\\](?!vis-network)"
]
}
}