-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.56 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.56 KB
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
77
78
{
"name": "@earthyscience/netcdf4-wasm",
"version": "0.2.4",
"description": "Partial compilation of NetCDF4 library to WebAssembly with TypeScript bindings",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "npm run build:wasm && npm run build:js",
"build:wasm": "bash scripts/build-wasm.sh",
"build:js": "tsc",
"clean": "rimraf dist build coverage",
"test": "cross-env NODE_OPTIONS='--experimental-vm-modules --no-warnings=ExperimentalWarning' jest",
"test:watch": "cross-env NODE_OPTIONS='--experimental-vm-modules --no-warnings=ExperimentalWarning' jest --watch",
"test:coverage": "cross-env NODE_OPTIONS='--experimental-vm-modules --no-warnings=ExperimentalWarning' jest --coverage",
"lint": "echo 'Linting not configured yet'",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run clean && npm run install-emscripten && npm run build && npm run test",
"install-emscripten": "bash scripts/install-emscripten.sh",
"check-deps": "bash scripts/check-dependencies.sh",
"clean:docs": "rimraf docs/viewer/node_modules/@earthyscience/netcdf4-wasm/dist docs/viewer/public/netcdf4-wasm.wasm",
"copy:docs-dist": "cpx \"dist/**/*\" docs/viewer/node_modules/@earthyscience/netcdf4-wasm/dist",
"copy:docs-wasm": "cpx \"dist/*.wasm\" docs/viewer/public",
"sync-docs": "npm run clean:docs && npm run copy:docs-dist && npm run copy:docs-wasm",
"build-and-sync": "npm run build && npm run sync-docs"
},
"keywords": [
"netcdf",
"netcdf4",
"wasm",
"webassembly",
"emscripten",
"scientific-computing"
],
"author": "EarthyScience",
"contributors": [
{
"name": "Lazaro Alonso",
"email": "lazarus.alon@gmail.com",
"url": "https://lazarusa.github.io"
},
{
"name": "Jeran Poehls",
"email": "jpoehls@bgc-jena.mpg.de"
}
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"cpx2": "^8.0.0",
"cross-env": "^10.1.0",
"jest": "^29.0.0",
"rimraf": "^6.1.2",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"files": [
"dist/",
"README.md",
"CONTRIBUTING.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EarthyScience/netcdf4-wasm.git"
},
"homepage": "https://github.com/EarthyScience/netcdf4-wasm/",
"bugs": {
"url": "https://github.com/EarthyScience/netcdf4-wasm/issues"
}
}