-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.23 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
{
"name": "leadvm",
"description": "[Node js] Leadfisher script loader with vm wrapper",
"author": "Alexander Ivanov <sashapop101@gmail.com>",
"homepage": "https://leadfisher.ru",
"version": "2.1.0",
"license": "MIT",
"packageManager": "npm@9.6.4",
"type": "commonjs",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"node.js",
"javascript",
"v8",
"script-loader",
"LeadFisherSolutions",
"vm",
"sandbox",
"context",
"script",
"container",
"isolation",
"zero-dependencies"
],
"files": [
"lib/",
"index.d.ts"
],
"scripts": {
"test": "node --test && tsc",
"dev": "node index.js",
"prettier:fix": "prettier --write \"**/*.{js,ts,json,html,cjs,md,yaml}\"",
"eslint:fix": "eslint --fix \"**/*.{js,ts}\""
},
"engines": {
"node": ">= 20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeadFisherSolutions/leadvm.git"
},
"devDependencies": {
"@types/node": "^18.15.10",
"eslint": "^8.40.0",
"eslint-config-leadfisher": "^1.2.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"typescript": "^5.0.2"
}
}