-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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
{
"name": "spc-parser",
"version": "1.0.0",
"description": "Thermo Galactic GRAMS SPC files parser",
"main": "lib/index.js",
"module": "lib-esm/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"lib-esm",
"src"
],
"scripts": {
"build": "npm run tsc-esm && cheminfo-build --entry lib-esm/index.js --root SPCParser",
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-esm",
"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-coverage && npm run eslint && npm run prettier && npm run check-types",
"test-coverage": "jest --coverage",
"test-only": "jest",
"tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm",
"tsc-cjs": "tsc --project tsconfig.cjs.json",
"tsc-esm": "tsc --project tsconfig.esm.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/spc-parser.git"
},
"keywords": [],
"author": "Benjamin Yiu",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/spc-parser/issues"
},
"homepage": "https://github.com/cheminfo/spc-parser#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.28",
"cheminfo-build": "^1.2.0",
"eslint": "^8.57.0",
"eslint-config-cheminfo-typescript": "^12.2.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "~5.4.2"
},
"dependencies": {
"cheminfo-types": "^1.7.3",
"iobuffer": "^5.3.2",
"ml-spectra-processing": "^14.2.2"
}
}