-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
executable file
·53 lines (53 loc) · 1.45 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
{
"name": "netcdfjs",
"version": "3.0.0",
"description": "Read and explore NetCDF files",
"main": "./lib/index.js",
"module": "./lib-esm/index.js",
"types": "./lib/index.d.ts",
"files": [
"src",
"lib",
"lib-esm"
],
"keywords": [
"netcdf",
"nc",
"data",
"format"
],
"author": "Miguel Asencio <maasencioh@gmail.com> (https://github.com/maasencioh)",
"repository": "cheminfo/netcdfjs",
"bugs": {
"url": "https://github.com/cheminfo/netcdfjs/issues"
},
"homepage": "https://github.com/cheminfo/netcdfjs",
"license": "MIT",
"scripts": {
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-esm",
"eslint": "eslint src --cache",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types",
"test-only": "jest --coverage",
"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"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"cheminfo-types": "^1.7.2",
"eslint": "^8.46.0",
"eslint-config-cheminfo-typescript": "^12.0.4",
"jest": "^29.6.2",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"iobuffer": "^5.3.2"
}
}