-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.93 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
{
"name": "raman-spectrum",
"version": "1.0.1",
"description": "",
"type": "module",
"exports": "./src/index.js",
"files": [
"src"
],
"scripts": {
"build": "cheminfo-build --entry src/index.js --root RamanSpectrum",
"build-doc": "cheminfo doc",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run eslint && npm run prettier && test-import",
"test-only": "vitest run --coverage",
"test-import": "node -e \"import('file://' + process.cwd() + '/src/index.js').then(console.log)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/raman-spectrum.git"
},
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/raman-spectrum/issues"
},
"homepage": "https://github.com/cheminfo/raman-spectrum#readme",
"devDependencies": {
"cheminfo-build": "^1.2.1",
"eslint": "^9.32.0",
"eslint-config-cheminfo": "^15.0.1",
"jest-matcher-deep-close-to": "^3.0.2",
"prettier": "^3.6.2",
"vitest": "^3.2.4"
},
"dependencies": {
"common-spectrum": "3.0.0",
"ml-spectra-processing": "^14.14.0",
"spc-parser": "^1.0.0",
"wdf-parser": "^0.3.0"
},
"info": {
"logo": "https://raw.githubusercontent.com/cheminfo/font/main/src/raman/assignment.svg",
"domain": [
"Physical Chemistry",
"Materials Science",
"Organic Chemistry"
],
"technique": {
"name": "Raman",
"chmo": "0002515",
"iupac": "https://goldbook.iupac.org/terms/view/L03477"
},
"functionality": {
"fileTypes": [
{
"extension": "jdx",
"manufacturer": "IUPAC",
"example": "https://raw.githubusercontent.com/cheminfo/raman-spectrum/main/src/from/__tests__/data/adamantan.jdx"
}
]
}
}
}