-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1016 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1016 Bytes
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
{
"name": "flavor-builder",
"version": "7.0.1",
"description": "Make an indexable website from a flavor (a bunch of views in the visualizer)",
"exports": "./src/index.js",
"bin": "bin/build.js",
"type": "module",
"scripts": {
"eslint": "eslint src bin",
"eslint-fix": "npm run eslint -- --fix",
"prettier": "prettier --check ./",
"prettier-write": "prettier --write ./",
"test": "npm run prettier && npm run eslint"
},
"keywords": [
"visualizer",
"build"
],
"author": "Daniel Kostro",
"license": "MIT",
"volta": {
"node": "24.13.1"
},
"dependencies": {
"debug": "^4.4.3",
"is-running": "^2.1.0",
"nunjucks": "^3.2.4",
"visualizer-on-tabs": "^2.0.2"
},
"devDependencies": {
"@types/node": "^24.10.14",
"eslint": "^9.39.3",
"eslint-config-cheminfo": "^17.1.0",
"globals": "^17.3.0",
"prettier": "^3.8.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/flavor-builder.git"
}
}