@takeyaqa/pict-wasm 3.7.4-wasm.7 → 3.7.4-wasm.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/pict.wasm +0 -0
- package/package.json +41 -26
package/dist/pict.wasm
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,36 +1,51 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@takeyaqa/pict-wasm",
|
|
3
|
-
"version": "3.7.4-wasm.
|
|
3
|
+
"version": "3.7.4-wasm.8",
|
|
4
4
|
"description": "Unofficial WebAssembly build of Microsoft's PICT (pairwise testing tool), compatible with both Node.js and browsers.",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"files": [
|
|
9
|
-
"dist"
|
|
10
|
-
],
|
|
11
|
-
"scripts": {
|
|
12
|
-
"build": "make wasm && npx tsc",
|
|
13
|
-
"clean": "make wasm-clean"
|
|
14
|
-
},
|
|
15
|
-
"devDependencies": {
|
|
16
|
-
"typescript": "^5.9.3"
|
|
17
|
-
},
|
|
18
|
-
"repository": {
|
|
19
|
-
"type": "git",
|
|
20
|
-
"url": "git+ssh://git@github.com/takeyaqa/pict-wasm.git"
|
|
21
|
-
},
|
|
22
|
-
"author": "Microsoft Corporation/Takeshi Kishi",
|
|
23
|
-
"license": "MIT",
|
|
24
|
-
"bugs": {
|
|
25
|
-
"url": "https://github.com/takeyaqa/pict-wasm/issues"
|
|
26
|
-
},
|
|
27
|
-
"homepage": "https://github.com/takeyaqa/pict-wasm#readme",
|
|
28
5
|
"keywords": [
|
|
29
6
|
"pict",
|
|
30
7
|
"testing",
|
|
31
8
|
"testing-tools",
|
|
9
|
+
"test-case-generation",
|
|
32
10
|
"combinatorial-testing",
|
|
11
|
+
"pairwise",
|
|
33
12
|
"pairwise-testing",
|
|
34
13
|
"webassembly"
|
|
35
|
-
]
|
|
36
|
-
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://github.com/takeyaqa/pict-wasm#readme",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/takeyaqa/pict-wasm/issues"
|
|
18
|
+
},
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"contributors": [
|
|
21
|
+
"Microsoft Corporation",
|
|
22
|
+
"Takeshi Kishi"
|
|
23
|
+
],
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"type": "module",
|
|
28
|
+
"main": "dist/index.js",
|
|
29
|
+
"types": "dist/index.d.ts",
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/takeyaqa/pict-wasm.git"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"typescript": "~5.9"
|
|
36
|
+
},
|
|
37
|
+
"devEngines": {
|
|
38
|
+
"runtime": {
|
|
39
|
+
"name": "node",
|
|
40
|
+
"version": ">=22 <23"
|
|
41
|
+
},
|
|
42
|
+
"packageManager": {
|
|
43
|
+
"name": "pnpm",
|
|
44
|
+
"version": ">=10 <11"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"scripts": {
|
|
48
|
+
"build": "make wasm && tsc",
|
|
49
|
+
"clean": "make wasm-clean"
|
|
50
|
+
}
|
|
51
|
+
}
|