-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "netcdf-gcms",
"version": "3.0.0",
"description": "Parser from NetCDF files to JSON usable for GC/MS",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "cheminfo-build --entry src/index.js --root NetCDFgcms",
"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-only && npm run eslint && npm run prettier",
"test-only": "vitest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/cheminfo/netcdf-gcms.git"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"keywords": [
"cheminfo",
"chemestry",
"netcdf",
"gcms",
"chromatography"
],
"author": "Miguel Asencio <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/netcdf-gcms/issues"
},
"homepage": "https://github.com/cheminfo/netcdf-gcms#readme",
"devDependencies": {
"@vitest/coverage-v8": "^2.1.5",
"cheminfo-build": "^1.2.0",
"eslint": "^9.15.0",
"eslint-config-cheminfo": "^12.0.1",
"prettier": "^3.3.3",
"vitest": "^2.1.5"
},
"dependencies": {
"netcdfjs": "^3.0.0"
}
}