-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.94 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
{
"name": "@stemkit/core",
"version": "0.1.0",
"description": "Dependency-injected computational core for STEMKit: GROMACS/PLUMED trajectory parsing, statistics, molecular structure geometry, curve fitting, unit conversion, and HPC script generation.",
"type": "module",
"main": "src/core/index.js",
"exports": {
".": "./src/core/index.js",
"./*": "./src/core/*.js"
},
"files": [
"src/core",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"check:links": "node tools/check-links.mjs",
"check:links:internal": "node tools/check-links.mjs --internal-only",
"build:css": "tailwindcss -c tailwind.config.js -i src/tailwind/input.css -o src/output.css --minify",
"watch:css": "tailwindcss -c tailwind.config.js -i src/tailwind/input.css -o src/output.css --watch",
"build:sitemap": "node tools/build-sitemap.mjs",
"check:sitemap": "node tools/build-sitemap.mjs --check"
},
"keywords": [
"computational-chemistry",
"molecular-dynamics",
"gromacs",
"plumed",
"xvg",
"statistics",
"curve-fitting",
"slurm",
"open-science",
"client-side",
"privacy"
],
"author": "Olanrewaju M. Daramola",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LD-Shell/stemkit.git"
},
"bugs": {
"url": "https://github.com/LD-Shell/stemkit/issues"
},
"homepage": "https://stemkit.net",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"tailwindcss": "^3.4.19"
},
"jest": {
"testEnvironment": "node",
"transform": {},
"testMatch": [
"**/tests/**/*.test.js"
],
"collectCoverageFrom": [
"src/core/**/*.js"
]
}
}