-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.06 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "ir-spectrum",
"version": "3.1.0",
"description": "",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "cheminfo-build --entry src/index.js --root IRSpectrum",
"build-doc": "cheminfo doc",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "rollup -c",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-coverage && npm run eslint && npm run prettier",
"test-coverage": "vitest run --coverage",
"test-only": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/ir-spectrum.git"
},
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/ir-spectrum/issues"
},
"homepage": "https://github.com/cheminfo/ir-spectrum#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@vitest/coverage-v8": "^2.1.5",
"cheminfo-build": "^1.2.0",
"codecov": "^3.8.3",
"eslint": "^9.14.0",
"eslint-config-cheminfo": "^12.0.1",
"esm": "^3.2.25",
"jest-matcher-deep-close-to": "^3.0.2",
"prettier": "^3.3.3",
"rollup": "^4.26.0",
"vitest": "^2.1.5"
},
"dependencies": {
"common-spectrum": "2.12.0",
"ml-gsd": "^12.1.8",
"spc-parser": "^1.0.0",
"uninstall": "^0.0.0"
},
"info": {
"logo": "https://raw.githubusercontent.com/cheminfo/font/master/src/ir/assignment.svg",
"domain": [
"Physical Chemistry",
"Materials Science",
"Organic Chemistry"
],
"technique": {
"name": "IR",
"chmo": "0000630",
"iupac": "https://goldbook.iupac.org/terms/view/IT07399"
},
"functionality": {
"fileTypes": [
{
"extension": "jdx",
"manufacturer": "IUPAC",
"example": "https://raw.githubusercontent.com/cheminfo/ir-spectrum/master/testFiles/absorbance.jdx"
}
]
}
}
}