-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.86 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
{
"name": "nmr-parser",
"version": "3.0.3",
"description": "Read and convert any NMR file",
"main": "lib/index.js",
"module": "src/index.js",
"types": "nmr-parser.d.ts",
"files": [
"lib",
"src",
"nmr-parser.d.ts"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"compile": "rollup -c",
"prepack": "npm run compile",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run eslint && npm run prettier",
"test-only": "jest --coverage",
"build": "cheminfo-build --entry src/index.js --root NMRparser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/nmr-parser.git"
},
"keywords": [
"nmr",
"magnetic resonance",
"parser",
"bruker",
"JEOL",
"CSDM",
"data analysis"
],
"author": "Julien Wist",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/nmr-parser/issues"
},
"homepage": "https://github.com/cheminfo/nmr-parser#readme",
"jest": {
"testEnvironment": "node"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@rollup/plugin-json": "^5.0.0",
"@types/jest": "^29.2.0",
"bruker-data-test": "^0.4.0",
"cheminfo-build": "^1.1.11",
"eslint": "^8.25.0",
"eslint-config-cheminfo": "^8.0.2",
"filelist-utils": "^1.0.1",
"jcamp-data-test": "^0.4.0",
"jeol-data-test": "^0.5.0",
"jest": "^29.2.1",
"prettier": "^2.7.1",
"rollup": "^3.2.3"
},
"dependencies": {
"brukerconverter": "^5.0.1",
"is-any-array": "^2.0.0",
"jcampconverter": "^9.0.2",
"jeolconverter": "^1.0.1",
"nmr-processing": "^9.2.0"
}
}