-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.04 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
{
"name": "xps-analysis",
"version": "0.19.0",
"description": "XPS analysis",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "cheminfo-build --entry src/index.js --root XPS",
"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/xps-analysis.git"
},
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/xps-analysis/issues"
},
"homepage": "https://github.com/cheminfo/xps-analysis#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@vitest/coverage-v8": "^2.1.8",
"cheminfo-build": "^1.2.0",
"eslint": "^9.16.0",
"eslint-config-cheminfo": "^13.0.0",
"globals": "^15.13.0",
"openchemlib": "^8.17.0",
"papaparse": "^5.4.1",
"prettier": "^3.4.2",
"rollup": "^4.28.1",
"spectrum-generator": "^8.0.12",
"vitest": "^2.1.8"
},
"dependencies": {
"common-spectrum": "2.12.0",
"ensure-string": "^1.2.0",
"md5": "^2.3.0",
"ml-gsd": "^12.1.8",
"openchemlib-utils": "^6.5.1",
"vamas": "^0.3.0"
},
"info": {
"logo": "https://raw.githubusercontent.com/cheminfo/font/main/src/misc/cristal2.svg",
"domain": [
"Physical Chemistry",
"Materials Science"
],
"technique": {
"name": "XPS",
"chmo": "0000404",
"iupac": "https://doi.org/10.1351/goldbook.X06716"
},
"functionality": {
"fileTypes": [
{
"extension": "vms",
"manufacturer": "ISO 14976",
"example": "https://raw.githubusercontent.com/cheminfo/xps-analysis/main/testFiles/assigned.vms"
}
]
}
}
}