-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "@nolai/libpep-wasm",
"version": "0.4.0",
"description": "The WebAssembly version of the libpep library",
"repository": {
"type": "git",
"url": "git+https://github.com/NOLAI/libpep.git"
},
"authors": [
{
"name": "Bernard van Gastel",
"email": "[email protected]",
"url": "https://www.sustainablesoftware.info"
},
{
"name": "Job Doesburg",
"email": "[email protected]",
"url": "https://jobdoesburg.nl"
}
],
"license": "Apache-2.0",
"devDependencies": {
"jest": "^29.7.0"
},
"main": "pkg/libpep.js",
"module": "pkg/libpep.js",
"types": "pkg/libpep.d.ts",
"files": [
"pkg/libpep_bg.wasm",
"pkg/libpep_bg.wasm.d.ts",
"pkg/libpep.d.ts",
"pkg/libpep.js",
"pkg/package.json",
"README.md"
],
"scripts": {
"build:nodejs": "wasm-pack build --target nodejs --features wasm",
"build:web": "wasm-pack build --target web --out-dir ./pkg-web --features wasm",
"test": "npm run build:nodejs && jest",
"prepublishOnly": "npm run build:nodejs"
}
}