-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.27 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.27 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
79
80
81
82
{
"name": "@libraz/coverwise",
"version": "1.1.0",
"type": "module",
"packageManager": "yarn@4.12.0",
"description": "Combinatorial test coverage engine — analyze, generate, and extend t-wise test suites via WASM",
"main": "dist/js/index.js",
"types": "dist/js/index.d.ts",
"exports": {
".": {
"types": "./dist/js/index.d.ts",
"import": "./dist/js/index.js"
},
"./pure": {
"types": "./dist/js/pure/index.d.ts",
"import": "./dist/js/pure/index.js"
},
"./wasm": "./dist/coverwise.wasm",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"prepare": "test -z \"$npm_config_production\" && simple-git-hooks || true",
"build": "yarn build:wasm && yarn build:js",
"build:wasm": "emcmake cmake -B build-wasm -DBUILD_WASM=ON -DCMAKE_BUILD_TYPE=Release && cmake --build build-wasm -j",
"build:js": "tsc",
"clean": "rm -rf dist build-wasm",
"lint": "biome check js/ tests/wasm/ src/ts/",
"lint:fix": "biome check --write js/ tests/wasm/",
"format": "biome format --write js/ tests/wasm/",
"test": "vitest run",
"test:watch": "vitest",
"prepack": "cp README.md /tmp/coverwise-readme-bak && cp README.npm.md README.md",
"postpack": "mv /tmp/coverwise-readme-bak README.md",
"prepublishOnly": "yarn clean && yarn build && yarn lint && yarn test"
},
"keywords": [
"combinatorial",
"pairwise",
"testing",
"t-wise",
"covering-array",
"test-generation",
"wasm",
"webassembly"
],
"author": "libraz <libraz@libraz.net>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/libraz/coverwise.git"
},
"bugs": {
"url": "https://github.com/libraz/coverwise/issues"
},
"homepage": "https://github.com/libraz/coverwise#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"lint-staged": "^16.2.7",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.0.0",
"vitest": "^4.0.16"
},
"volta": {
"node": "22.21.1",
"yarn": "4.12.0"
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
},
"lint-staged": {
"{js,tests/wasm}/**/*.{ts,js}": [
"biome check --write"
]
}
}