-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "raman-spectrum",
"version": "0.9.0",
"description": "",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"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",
"prepack": "rollup -c",
"test": "npm run test-coverage && npm run eslint",
"test-coverage": "jest --coverage",
"test-only": "jest"
},
"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",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.17.9",
"@types/jest": "^27.5.0",
"cheminfo-build": "^1.1.11",
"codecov": "^3.8.2",
"eslint": "^8.15.0",
"eslint-config-cheminfo": "^7.3.0",
"esm": "^3.2.25",
"jest": "^28.1.0",
"jest-matcher-deep-close-to": "^3.0.2",
"prettier": "^2.6.2",
"rollup": "^2.72.1"
},
"dependencies": {
"common-spectrum": "1.0.2",
"ml-spectra-processing": "^11.6.0",
"spc-parser": "^0.5.2",
"wdf-parser": "^0.2.1"
},
"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"
}
]
}
}
}