-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
97 lines (97 loc) · 2.6 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
96
97
{
"author": {
"name": "Johann Philipp Strathausen",
"email": "[email protected]",
"url": "https://www.stratha.us"
},
"contributors": [
"Aslak Hellesoy <[email protected]>",
"Dave Hoover <[email protected]>",
"Grigory Kruglov (https://twitter.com/#!/lunafiko)"
],
"name": "graphdracula",
"description": "JavaScript Graph Layouting and Drawing",
"version": "1.2.1",
"homepage": "https://www.graphdracula.net",
"scripts": {
"start": "npm run build:dev",
"build": "npm run build:node; npm run build:prod",
"build:node": "babel src -d lib",
"build:dev": "watchify src -v --standalone Dracula --ignore raphael -t babelify --debug -o dist/dracula.dev.js",
"build:prod": "browserify src --standalone Dracula --ignore raphael -t babelify --debug | uglifyjs > dist/dracula.min.js",
"pretest": "npm run check",
"prebuild": "npm test",
"test": "mocha --require babel-register src/**/*.spec.js src/*.spec.js",
"test-watch": "mocha --watch --require babel-register src/**/*.spec.js src/*.spec.js",
"check": "eslint src/",
"fix": "eslint --fix src/",
"snyk-protect": "snyk protect",
"postinstall": "opencollective-postinstall",
"prepare": "npm run snyk-protect"
},
"license": "MIT",
"files": [
"index.js",
"lib/*",
"dist/*",
"README.md"
],
"main": "lib/index.js",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/strathausen/dracula/issues"
},
"keywords": [
"bellman-ford",
"dijkstra",
"dracula",
"graph",
"math",
"raphael",
"snap",
"static",
"svg",
"vml"
],
"repository": {
"type": "git",
"url": "git://github.com/strathausen/dracula.git"
},
"dependencies": {
"lodash": "^4.17.20",
"opencollective": "^1.0.3",
"opencollective-postinstall": "^2.0.2",
"snyk": "^1.996.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"babel-preset-env": "^1.7.0",
"babelify": "^7.3.0",
"browserify": "^16.5.2",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^10.3.0",
"randomcolor": "^0.4.4",
"raphael": "^2.2.8",
"seedrandom": "^2.4.4",
"sinon": "^1.17.5",
"snapsvg": "^0.4.0",
"uglify-js": "^3.11.4",
"watchify": "^4.0.0"
},
"peerDependencies": {
"raphael": "2.x.x"
},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/dracula"
},
"snyk": true
}