-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.22 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "nix-eval-js",
"version": "0.0.1",
"description": "run nix code in javascript",
"main": "src/nix-eval.js",
"type": "module",
"bin": {
"nix-eval": "./src/nix-eval-cli.js"
},
"scripts": {
"test": "ava",
"__test": "run-s test:unit",
"__test:unit": "ava",
"test:perf": "bipbip --compare docs/benchmarks.json test/benchmarks.js",
"test:perf:save": "bipbip --compare docs/benchmarks.json --save docs/benchmarks.json test/benchmarks.js"
},
"ava": {
"files": [
"test/*.test.js"
],
"verbose": true
},
"keywords": [
"nix",
"nixos",
"nixpkgs",
"eval",
"evaluator",
"interpreter",
"incremental-interpreter",
"incremental-evaluator",
"incremental-evaluation",
"incremental-compiler",
"incremental-compilation",
"live-coding",
"lezer-parser",
"vanillajs",
"toy-interpreter"
],
"author": "Milan Hauth",
"license": "MIT",
"dependencies": {
"@lezer/lr": "^1.2.3",
"@types/node": "^18.11.2",
"compare-versions": "^5.0.1"
},
"devDependencies": {
"@lezer/common": "^1.0.1",
"ava": "^4.3.3",
"bipbip": "github:milahu/bipbip"
},
"devDependencies__benchmark": {
"npm-run-all": "^4.1.5"
}
}