-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.57 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.57 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "visualizer",
"version": "3.2.3",
"description": "Data visualization framework",
"keywords": [
"data",
"visualization",
"framework"
],
"scripts": {
"build": "grunt build",
"build-debug": "node --inspect --debug-brk ./node_modules/grunt-cli/bin/grunt build",
"copy-resources": "node -e \"fs.copyFileSync('node_modules/openchemlib/dist/resources.json', 'src/browserified/openchemlib/resources.json')\"",
"clean": "rimraf src/components src/browserified",
"eslint": "eslint src --cache",
"eslint-fix": "npm run eslint -- --fix",
"install-components": "bower install",
"install-rollup": "rollup --config rollup.config.mjs",
"postinstall": "npm run clean && npm run install-components && npm run install-rollup && npm run copy-resources",
"prerelease": "grunt bump:prerelease",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run eslint && npm run prettier && npm run test-only",
"test-only": "node --test tests/**",
"release:minor": "npm run test && grunt bump:minor --release",
"release:patch": "npm run test && grunt bump:patch --release"
},
"homepage": "https://github.com/NPellet/visualizer",
"bugs": {
"url": "https://github.com/npellet/visualizer/issues"
},
"license": "MIT",
"author": "Norman Pellet",
"contributors": [
"Luc Patiny",
"Michaël Zasso",
"Daniel Kostro"
],
"main": "src/init.js",
"repository": {
"type": "git",
"url": "https://github.com/NPellet/visualizer.git"
},
"devDependencies": {
"@babel/types": "^7.29.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/node": "^24.10.13",
"add-stream": "^1.0.0",
"bower": "^1.8.14",
"conventional-changelog": "^6.0.0",
"eslint": "^9.39.2",
"eslint-config-cheminfo": "^17.1.0",
"extend": "^3.0.2",
"globals": "^17.3.0",
"grunt": "^1.6.1",
"grunt-babel": "^8.0.0",
"grunt-cli": "^1.5.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-requirejs": "^1.0.0",
"ink-docstrap": "^1.3.2",
"lodash": "^4.17.23",
"mkpath": "^1.0.0",
"prettier": "^3.8.1",
"requirejs": "^2.3.8",
"rimraf": "^6.1.3",
"rollup": "^4.59.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"tempfile": "^3.0.0",
"walk": "^2.3.15"
},
"private": true,
"dependencies": {
"@babel/preset-env": "^7.29.0",
"@fortawesome/fontawesome-free": "^7.2.0",
"@mapbox/leaflet-omnivore": "^0.3.4",
"angularplasmid": "^1.0.5",
"babel-preset-minify": "^0.5.2",
"country-data": "0.0.31",
"d3-hexbin": "^0.2.2",
"delay": "^4.4.1",
"eslint-plugin-import": "^2.32.0",
"jquery": "^3.7.1",
"jquery-migrate": "^3.5.2",
"jquery-ui": "^1.14.2",
"jquery.fancytree": "^2.38.5",
"jsbarcode": "^3.12.3",
"json-chart": "^1.1.0",
"jsoneditor": "^10.4.2",
"katex": "^0.16.33",
"leaflet": "^1.9.4",
"marked": "^0.3.19",
"mathjs": "^15.1.1",
"mf-parser": "^3.7.0",
"mime-types": "^3.0.2",
"moment": "^2.30.1",
"moment-duration-format": "^2.3.2",
"node-jsgraph": "2.4.15",
"numeral": "^2.0.6",
"openchemlib": "^9.20.0",
"papaparse": "^5.5.3",
"pouchdb": "^3.6.0",
"quill": "2.0.2",
"quill-resize-module": "^2.1.2",
"quill-table-better": "^1.2.3",
"rxn-renderer": "^1.0.2",
"semver": "^7.7.4",
"smart-array-filter": "^5.0.0",
"superagent": "^10.3.0",
"twig": "^1.17.1"
},
"volta": {
"node": "22.22.0"
}
}