jz 0.0.0 → 0.1.0

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/package.json CHANGED
@@ -1,11 +1,60 @@
1
1
  {
2
2
  "name": "jz",
3
- "version": "0.0.0",
4
- "description": "",
3
+ "version": "0.1.0",
4
+ "description": "Modern functional JS compiling to WASM",
5
5
  "main": "index.js",
6
+ "type": "module",
7
+ "exports": {
8
+ ".": "./index.js",
9
+ "./wasi": "./wasi.js"
10
+ },
11
+ "files": [
12
+ "index.js",
13
+ "cli.js",
14
+ "wasi.js",
15
+ "src",
16
+ "module",
17
+ "README.md"
18
+ ],
19
+ "bin": {
20
+ "jz": "cli.js"
21
+ },
6
22
  "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
23
+ "test": "node test/index.js",
24
+ "test:safe": "nice -n 15 node scripts/timebox.mjs 3000 node test/index.js",
25
+ "test:segments": "nice -n 15 node scripts/test-segments.mjs 3000 files",
26
+ "test:prefixes": "nice -n 15 node scripts/test-segments.mjs 3000 prefix",
27
+ "test262": "node test/test262.js",
28
+ "test262:runner": "node test/runner.js",
29
+ "dev": "node cli.js",
30
+ "build": "node cli.js compile examples/*.js",
31
+ "bench": "node bench/bench.mjs",
32
+ "bench:biquad": "node bench/bench.mjs biquad",
33
+ "test:bench-pin": "node test/bench-pin.js"
34
+ },
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "git+https://github.com/dy/jz.git"
38
+ },
39
+ "bugs": {
40
+ "url": "https://github.com/dy/jz/issues"
41
+ },
42
+ "homepage": "https://github.com/dy/jz#readme",
43
+ "author": "Dmitry Iv",
44
+ "license": "MIT",
45
+ "dependencies": {
46
+ "subscript": "^10.3.3",
47
+ "watr": "^4.5.1"
8
48
  },
9
- "author": "Diego Rodríguez Baquero <diegorbaquero@gmail.com>",
10
- "license": "MIT"
49
+ "keywords": [
50
+ "javascript",
51
+ "webassembly",
52
+ "compiler",
53
+ "functional",
54
+ "minimal",
55
+ "wasm"
56
+ ],
57
+ "devDependencies": {
58
+ "tst": "^9.2.0"
59
+ }
11
60
  }