-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.93 KB
/
package.json
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
{
"name": "mass-tools",
"private": true,
"version": "7.45.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build-lerna && cheminfo-build --out-name mass-tools --entry packages/mass-tools/src/index.js -r MassTools",
"build-docs": "npm run build-toc && ls packages | xargs -I % sh -c 'cd packages/%; documentation build src/index.js -f html -o ../../docs/%; cd ../..'",
"build-toc": "node ./src/docs/buildDocs.mjs",
"build-lerna": "npm run build-lerna-clean && npm run tsc",
"build-lerna-clean": "npm run tsc -- --clean",
"eslint": "eslint packages --cache",
"eslint-fix": "npm run eslint -- --fix",
"postinstall": "cp README.md packages/mass-tools/README.md",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"publish": "npm run build-lerna && npm run test && lerna publish -y --no-verify-access",
"test": "npm run test-only && npm run eslint && npm run prettier",
"test-only": "npm run build-lerna && vitest --run --test-timeout=30000 --coverage",
"tsc": "tsc --build",
"tsc-watch": "tsc --build --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/cheminfo/mass-tools.git"
},
"author": "Luc Patiny <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/mass-tools/issues"
},
"homepage": "https://github.com/cheminfo/mass-tools#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@vitest/coverage-v8": "^2.1.7",
"benchmark": "^2.1.4",
"cheminfo-build": "^1.2.0",
"documentation": "^14.0.3",
"eslint": "^9.16.0",
"eslint-config-cheminfo-typescript": "^17.0.0",
"globals": "^15.13.0",
"jest-matcher-deep-close-to": "^3.0.2",
"lerna": "^8.1.9",
"msw": "^2.6.6",
"prettier": "^3.4.1",
"typescript": "^5.7.2",
"vitest": "^2.1.7"
}
}