-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 935 Bytes
/
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
{
"name": "@peggyjs/from-mem",
"version": "1.3.5",
"description": "Load a string as if it was an esm or commonjs module with a given filename.",
"main": "index.js",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"test": "c8 node --stack-trace-limit=1000 --experimental-vm-modules --test",
"ci": "npm run build && npm run lint && npm run test"
},
"keywords": [
"vm",
"module",
"esm",
"eval"
],
"author": "Joe Hildebrand <joe-github@cursive.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/peggyjs/from-mem.git"
},
"dependencies": {
"semver": "7.6.3"
},
"devDependencies": {
"@peggyjs/eslint-config": "5.0.0",
"@types/node": "22.7.5",
"@types/semver": "7.5.8",
"c8": "10.1.2",
"eslint": "9.12.0",
"typescript": "5.6.3"
},
"packageManager": "pnpm@9.12.1",
"engines": {
"node": ">=18"
}
}