generated from astrohelm/node-workspace
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (54 loc) · 1.54 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
{
"license": "MIT",
"version": "3.1.0",
"type": "commonjs",
"name": "isolation",
"homepage": "https://astrohelm.ru",
"description": "How often do you see libraries which mutates global variables Or how often do you check libraries actions ? This library provides script isolation in custom contexts to solve this kind of issues.",
"author": "Alexander Ivanov <[email protected]>",
"keywords": [
"v8",
"vm",
"script",
"runner",
"nodejs",
"wrapper",
"sandbox",
"context",
"astrohelm",
"container",
"isolation",
"realm",
"pollution-control",
"javascript",
"script-loader",
"zero-dependencies"
],
"main": "index.js",
"types": "types/index.d.ts",
"packageManager": "[email protected]",
"readmeFilename": "README.md",
"engines": { "node": ">= 18" },
"files": ["/lib", "/types"],
"scripts": {
"test": "node --test",
"dev": "node index.js",
"prettier:fix": "prettier --write \"**/*.{js,ts,json,html,cjs,md,yaml}\"",
"eslint:fix": "eslint --fix \"**/*.{js,ts}\""
},
"repository": { "type": "git", "url": "git+https://github.com/astrohelm/isolation.git" },
"bugs": {
"url": "https://github.com/astrohelm/isolation/issues",
"email": "[email protected]"
},
"devDependencies": {
"@types/node": "^20.14.10",
"eslint": "^8.57.0",
"eslint-config-astrohelm": "^1.5.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"typescript": "^5.5.3"
}
}