forked from eisman/neo4jd3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.98 KB
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
96
97
98
99
100
101
102
103
{
"name": "@targetpackage/neo4jd3",
"version": "1.0.0",
"description": "Neo4jD3 is a JavaScript library for visualizing Neo4j graphs using D3.js.",
"bugs": {
"url": "https://github.com/TargetPackage/neo4jd3/issues"
},
"homepage": "https://github.com/TargetPackage/neo4jd3",
"directories": {
"test": "test"
},
"scripts": {
"start": "gulp",
"build": "npm run build:bundle && npm run build:bundle:min && npm run build:demo && gulp styles",
"build:bundle": "browserify -p esmify -t babelify --presets @babel/preset-env --entry ./src/main/index.js --standalone Neo4jd3 --outfile ./dist/js/neo4jd3.js",
"build:bundle:min": "terser ./dist/js/neo4jd3.js --compress --mangle --output ./dist/js/neo4jd3.min.js",
"build:demo": "browserify -p esmify -t babelify --presets @babel/preset-env --entry ./src/main/index.js --standalone Neo4jd3 --outfile ./docs/js/neo4jd3.js",
"test": "gulp test",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write ."
},
"keywords": [
"neo4j",
"d3.js",
"graph visualization"
],
"author": {
"name": "Eduardo Eisman <eeisman@gmail.com>",
"url": "https://github.com/eisman"
},
"repository": {
"type": "git",
"url": "https://github.com/TargetPackage/neo4jd3.git"
},
"license": "MIT",
"dependencies": {
"d3": "^7.6.1"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@popperjs/core": "^2.11.6",
"ansi-colors": "^4.1.3",
"babelify": "^10.0.0",
"bootstrap": "^5.2.3",
"browserify": "^17.0.0",
"browserify-shim": "^3.8.16",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"del": "^6.1.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"esmify": "^2.1.1",
"fancy-log": "^2.0.0",
"font-awesome": "^4.7.0",
"gulp": "^4.0.2",
"gulp-cache": "^1.1.3",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-derequire": "^3.0.0",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-jshint": "^2.1.0",
"gulp-livereload": "^4.0.2",
"gulp-mocha": "^8.0.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-uglify": "^3.0.2",
"gulp4-run-sequence": "^1.0.1",
"jshint": "^2.13.6",
"karma": "^6.4.1",
"karma-bamboo-reporter": "^0.1.2",
"karma-browserify": "^8.1.0",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-chai-plugins": "^0.9.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^2.0.2",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"node-notifier": "^10.0.1",
"prettier": "^2.8.1",
"proxyquire": "^2.1.3",
"proxyquireify": "^3.2.1",
"sass": "^1.57.1",
"sinon": "^4.5.0",
"sinon-chai": "^2.14.0",
"terser": "^5.16.1",
"twemoji": "^14.0.2",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^4.0.0"
},
"optionalDependencies": {
"font-awesome": "^4.7.0"
},
"type": "module"
}