-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.99 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.99 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
{
"name": "uv-spectrum",
"version": "0.7.0",
"description": "",
"type": "module",
"exports": {
".": "./lib/index.js"
},
"files": [
"lib",
"src"
],
"scripts": {
"build": "npm run tsc && cheminfo-build --entry lib/index.js --root UVSpectrum",
"check-types": "tsc --noEmit",
"clean": "rimraf lib",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run check-types && npm run eslint && npm run prettier",
"test-only": "vitest run",
"tsc": "tsc -p tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/uv-spectrum.git"
},
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/uv-spectrum/issues"
},
"homepage": "https://github.com/cheminfo/uv-spectrum#readme",
"dependencies": {
"common-spectrum": "3.2.0",
"ml-gsd": "^13.1.1"
},
"devDependencies": {
"@types/node": "^25.3.5",
"@vitest/coverage-v8": "^4.0.18",
"@zakodium/tsconfig": "^1.0.3",
"cheminfo-build": "^1.3.2",
"eslint": "^9.14.0",
"eslint-config-cheminfo-typescript": "^21.1.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"info": {
"logo": "https://raw.githubusercontent.com/cheminfo/font/main/src/uv/assignment.svg",
"domain": [
"Physical Chemistry",
"Materials Science",
"Organic Chemistry"
],
"technique": {
"name": "UV",
"chmo": "0002515",
"iupac": "https://goldbook.iupac.org/terms/view/L03477"
},
"functionality": {
"fileTypes": [
{
"extension": "jdx",
"manufacturer": "IUPAC",
"example": "https://raw.githubusercontent.com/cheminfo/uv-spectrum/main/src/from/__tests__/data/adamantan.jdx"
}
]
}
}
}