-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.55 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
{
"name": "@nasa-jpl/plandev-ts-user-code-runner",
"version": "1.1.0",
"description": "A simple way to safely run user code written in Typescript.",
"repository": {
"type": "git",
"url": "https://github.com/NASA-AMMOS/plandev-ts-user-code-runner"
},
"main": "build/UserCodeRunner.js",
"type": "module",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf build && rm -rf docs",
"doc": "typedoc",
"prepare": "npm run build && npm run doc",
"test": "node --no-node-snapshot --test --import tsx `glob 'test/**/*.spec.ts'`",
"test:ci": "node --no-node-snapshot --test --import tsx --test-reporter=spec --test-reporter=spec --test-reporter-destination=stdout --test-reporter-destination=test-output.txt `glob 'test/**/*.spec.ts'`",
"watch": "tsc -p tsconfig.json --watch"
},
"engines": {
"node": "24.x"
},
"dependencies": {
"isolated-vm": "6.0.2",
"source-map": "^0.7.4",
"stack-trace": "1.0.0"
},
"peerDependencies": {
"typescript": "4.x || 5.x"
},
"devDependencies": {
"@js-temporal/polyfill": "^0.4.3",
"@types/node": "24.13.3",
"@types/stack-trace": "^0.0.30",
"expect": "^29",
"glob": "^10",
"prettier": "^2.7.1",
"tsx": "4.23.12",
"typedoc": "^0.23.17",
"typescript": "^5"
},
"allowScripts": {
"fsevents@2.3.3": true,
"isolated-vm@6.0.2": true,
"esbuild@0.28.2": true
},
"publishConfig": {
"access": "public"
},
"devEngines": {
"packageManager": {
"name": "npm",
"onFail": "warn"
}
}
}