-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.12 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
{
"private": true,
"name": "visualizer-helper",
"version": "0.0.0",
"description": "",
"scripts": {
"babel-test": "babel . --config-file=./test-build.babel.mjs --out-dir ./build",
"eslint": "eslint . --cache",
"eslint-fix": "npm run eslint -- --fix",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run prettier && npm run eslint && npm run test-only",
"test-only": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo-js/visualizer-helper.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo-js/visualizer-helper/issues"
},
"homepage": "https://github.com/cheminfo-js/visualizer-helper#readme",
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.28.6",
"@babel/plugin-transform-destructuring": "^7.28.5",
"@babel/preset-env": "^7.28.6",
"@zakodium/babel-plugin-transform-modules-amd": "^1.1.1",
"eslint": "^9.39.2",
"eslint-config-zakodium": "^19.1.0",
"jest": "^30.2.0",
"prettier": "^3.8.0"
},
"volta": {
"node": "24.12.0"
}
}