forked from npmgraph/npmgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.62 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.62 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
{
"name": "npmgraph",
"version": "2.9.1",
"type": "module",
"author": {
"name": "Robert Kieffer",
"url": "http://github.com/broofa",
"email": "robert@broofa.com"
},
"license": "MIT",
"browserslist": [
"last 2 versions"
],
"funding": [
"https://github.com/sponsors/broofa",
"https://github.com/sponsors/fregante"
],
"dependencies": {
"@hpcc-js/wasm": "1.14.1",
"d3-hierarchy": "3.1.2",
"d3-interpolate": "3.0.1",
"d3-scale": "4.0.2",
"d3-scale-chromatic": "3.0.0",
"d3-selection": "3.0.0",
"d3-shape": "3.1.0",
"filter-altered-clicks": "1.0.1",
"md5": "2.3.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"semver": "7.3.7"
},
"description": "Visualize npm dependency graphs (public and private!)",
"keywords": [
"npm",
"dependencies",
"dependency",
"graph",
"module"
],
"repository": {
"url": "https://github.com/npmgraph/npmgraph.git",
"type": "git"
},
"devDependencies": {
"@parcel/runtime-react-refresh": "^2.7.0",
"@parcel/transformer-sass": "^2.7.0",
"@types/md5": "2.3.2",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"eslint": "8.13.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"parcel": "^2.7.0",
"prettier": "2.6.2",
"process": "0.11.10",
"standard-version": "9.3.2",
"typescript": "4.6.3"
},
"scripts": {
"build": "parcel build index.html",
"release": "standard-version",
"start": "parcel serve index.html",
"test": "eslint . && prettier -c .",
"fix": "prettier -w ."
}
}