-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.53 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
{
"name": "plebeiangraphlibrary",
"version": "1.0.6",
"description": "A NetworkX like package for graphs in javascript",
"source": "./Src/index.ts",
"main": "./Build/pgl.js",
"types": "./Build/pgl.d.ts",
"module": "./Build/pgl_module.js",
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"test": "node ./test/test_1.js",
"document": "npx typedoc --out docs Src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/range-et/PGL.git"
},
"keywords": [
"Network",
"Graphs",
"Webgl",
"Visualization"
],
"files": [
"Build/",
"Examples/",
"README.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"LICENSE"
],
"author": "Indrajeet Haldar",
"license": "MIT",
"bugs": {
"url": "https://github.com/range-et/PGL/issues"
},
"homepage": "https://www.plebeiangraphlibrary.com/",
"targets": {
"main": {
"includeNodeModules": false
},
"module": {
"includeNodeModules": true
}
},
"dependencies": {
"three": "^0.141.0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.9.1",
"@parcel/transformer-typescript-tsc": "^2.9.1",
"@parcel/transformer-typescript-types": "^2.9.1",
"@types/three": "^0.136.1",
"express": "^4.18.2",
"jest": "^29.7.0",
"jest-image-snapshot": "^6.4.0",
"jsdoc": "^4.0.2",
"parcel": "^2.9.1",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"puppeteer": "^21.7.0",
"shelljs": "^0.8.5",
"typedoc": "^0.24.8",
"typescript": "^5.1.3"
}
}