-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 999 Bytes
/
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
{
"name": "cytoscape-html",
"version": "0.1.2",
"description": "A simple cytoscape extension that adds the ability to use HTML for nodes.",
"main": "dist/cytoscape-html.js",
"typings": "dist/cytoscape-html.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts",
"build": "webpack",
"dev": "webpack --watch --progress"
},
"keywords": [
"graph",
"visualization",
"cytoscape"
],
"author": "Brady Douthit",
"repository": {
"type": "git",
"url": "https://github.com/BradyDouthit/cytoscape-html"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"@types/cytoscape": "^3.19.9",
"lodash": "^4.17.21"
},
"dependencies": {}
}