You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{
|
|
|
|
"name": "oxigraph_tests",
|
|
|
|
"description": "Oxigraph JS build and tests",
|
|
|
|
"private": true,
|
|
|
|
"devDependencies": {
|
|
|
|
"@biomejs/biome": "^1.0.0",
|
|
|
|
"@rdfjs/data-model": "^2.0.1",
|
|
|
|
"mocha": "^10.0.0"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"fmt": "biome format . --write && biome check . --apply-unsafe",
|
|
|
|
"test": "biome ci . && wasm-pack build --debug --target nodejs && mocha",
|
|
|
|
"build": "rm -rf pkg && wasm-pack build --release --target web --out-name web && mv pkg pkg-web && wasm-pack build --release --target nodejs --out-name node && mv pkg pkg-node && node build_package.js && rm -r pkg-web && rm -r pkg-node",
|
|
|
|
"release": "npm run build && npm publish ./pkg",
|
|
|
|
"pack": "npm run build && npm pack ./pkg"
|
|
|
|
},
|
|
|
|
"standard": {
|
|
|
|
"ignore": [
|
|
|
|
"pkg*"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|