-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·72 lines (72 loc) · 2.63 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "aran",
"description": "Aran is a JavaScript instrumenter",
"version": "5.0.0",
"author": {
"name": "Laurent Christophe",
"email": "[email protected]"
},
"files": [
"/lib/**/*.mjs",
"/lib/**/*.d.ts"
],
"main": "lib/index.mjs",
"types": "lib/index.d.ts",
"type": "module",
"repository": "lachrist/aran",
"homepage": "http://github.com/lachrist/aran",
"license": "MIT",
"scripts": {
"lint": "npx tsc && npx prettier -c '**/*.(mjs|d.ts)' && npx eslint 'lint/**/*.mjs' 'test/**/*.mjs' 'lib/**/*.mjs'",
"format": "npx prettier -w '**/*.(mjs|d.ts)'",
"document": "npx typedoc && open page/typedoc/index.html",
"page": "sh page.sh",
"pack-demo": "node demo/generate.mjs && npx rollup --config demo/rollup.config.mjs && cp demo/index.html page/demo",
"serve-demo": "echo http://127.0.0.1:8080/index.html && npx http-server page/demo",
"load262": "git clone --filter=tree:0 https://github.com/tc39/test262 test/262/test262",
"build262": "node test/262/tagging/main-generate.mjs && node test/262/stagging/main-generate.mjs",
"move262": "node --experimental-vm-modules --expose-gc test/262/main/move.mjs",
"look262": "ARAN_RECORD=test/262/main/record/ node test/262/record/main-cleanup.mjs && ARAN_RECORD=test/262/main/record/ node --experimental-vm-modules --expose-gc test/262/main/look.mjs",
"exec262": "node --experimental-vm-modules --expose-gc test/262/main/exec.mjs",
"batch262": "node test/262/main/batch.mjs identity parsing bare-main bare-comp stnd-void stnd-full flex-void flex-full invariant",
"report262": "node test/262/query/report.mjs",
"plot262": "node test/262/query/plot.mjs"
},
"keywords": [
"JavaScript",
"Instrumentation",
"Dynamic Analysis",
"Sandboxing",
"Monitoring",
"Tracing",
"Shadow Execution"
],
"devDependencies": {
"@babel/parser": "^7.23.6",
"@babel/types": "^7.23.6",
"@codemirror/commands": "^6.6.0",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/language": "^6.10.2",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.29.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/eslint": "^9.6.1",
"@types/node": "^22.5.1",
"@types/source-map": "^0.5.2",
"@typescript-eslint/parser": "^8.3.0",
"acorn": "^8.14.0",
"aran": "file:./",
"astring": "^1.9.0",
"eslint": "^9.9.1",
"http-server": "^14.1.1",
"prettier": "^3.0.0",
"rollup": "^4.19.1",
"typedoc": "^0.26.5",
"typescript": "^5.6.2",
"typescript-eslint": "^8.3.0",
"yaml": "^2.3.2"
},
"dependencies": {
"estree-sentry": "^0.4.1"
}
}