-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·77 lines (77 loc) · 2.01 KB
/
package.json
File metadata and controls
executable file
·77 lines (77 loc) · 2.01 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
{
"name": "linvail",
"description": "Provenancial Equality for JavaScript",
"version": "7.11.0",
"author": {
"name": "Laurent Christophe",
"email": "laurent.christophe.terken@gmail.com"
},
"bin": {
"linvail": "./bin/linvail.mjs"
},
"type": "module",
"main": "./lib/linvail.mjs",
"types": "./lib/linvail.d.ts",
"exports": {
".": {
"import": "./lib/linvail.mjs",
"types": "./lib/linvail.d.ts"
},
"./library": {
"import": "./lib/library.mjs",
"types": "./lib/library.d.ts"
},
"./runtime": {
"import": "./lib/runtime.mjs",
"types": "./lib/runtime.d.ts"
},
"./instrument": {
"import": "./lib/instrument.mjs",
"types": "./lib/instrument.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/lachrist/linvail.git"
},
"scripts": {
"lint": "npx tsc && npx prettier -c '**/*.(mjs|d.ts)' && npx eslint",
"format": "npx prettier -w '**/*.(mjs|d.ts)'",
"test:lib": "sh test/lib/exec.sh",
"test:bin": "sh test/bin/exec.sh",
"test": "npm run test:lib && npm run test:bin",
"test:lib:one": "node test/lib/deploy.mjs",
"test:lib:one:cov": "npx c8 -- node test/lib/deploy.mjs",
"test:lib:one:cov:html": "npx c8 --reporter=html -- node test/lib/deploy.mjs",
"viz:dep": "npx madge --image dep.svg lib/linvail.mjs"
},
"homepage": "https://github.com/lachrist/linvail",
"license": "MIT",
"keywords": [
"Data Provenance",
"Instrumentation",
"Taint Analysis",
"Dynamic Program Analsysis",
"Membrane",
"Control Access System",
"Proxy",
"Aran"
],
"dependencies": {
"acorn": "^8.14.0",
"aran": "^5.0.0",
"astring": "^1.9.0",
"minimatch": "^10.0.1",
"virtual-proxy": "^0.3.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/source-map": "^0.5.2",
"c8": "^10.1.3",
"eslint": "^9.16.0",
"madge": "^8.0.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
}
}