isolated-function 0.1.23 → 0.1.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +0 -0
- package/package.json +17 -17
package/LICENSE.md
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "isolated-function",
|
|
3
3
|
"description": "Runs untrusted code in a Node.js v8 sandbox.",
|
|
4
4
|
"homepage": "https://github.com/Kikobeats/isolated-function",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.24",
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": "./src/index.js"
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@kikobeats/time-span": "~1.0.5",
|
|
37
37
|
"acorn": "~8.12.1",
|
|
38
|
-
"acorn-walk": "~8.3.
|
|
38
|
+
"acorn-walk": "~8.3.4",
|
|
39
39
|
"debug-logfmt": "~1.2.3",
|
|
40
40
|
"ensure-error": "~3.0.1",
|
|
41
|
-
"esbuild": "~0.
|
|
41
|
+
"esbuild": "~0.24.0",
|
|
42
42
|
"serialize-error": "8",
|
|
43
|
-
"tinyspawn": "~1.3.
|
|
43
|
+
"tinyspawn": "~1.3.3"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@commitlint/cli": "latest",
|
|
@@ -63,18 +63,6 @@
|
|
|
63
63
|
"files": [
|
|
64
64
|
"src"
|
|
65
65
|
],
|
|
66
|
-
"scripts": {
|
|
67
|
-
"clean": "rm -rf node_modules",
|
|
68
|
-
"contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
|
|
69
|
-
"coverage": "c8 report --reporter=text-lcov > coverage/lcov.info",
|
|
70
|
-
"lint": "standard",
|
|
71
|
-
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
|
|
72
|
-
"pretest": "npm run lint",
|
|
73
|
-
"release": "standard-version -a",
|
|
74
|
-
"release:github": "github-generate-release",
|
|
75
|
-
"release:tags": "git push --follow-tags origin HEAD:master",
|
|
76
|
-
"test": "c8 ava"
|
|
77
|
-
},
|
|
78
66
|
"license": "MIT",
|
|
79
67
|
"ava": {
|
|
80
68
|
"workerThreads": false
|
|
@@ -101,5 +89,17 @@
|
|
|
101
89
|
"simple-git-hooks": {
|
|
102
90
|
"commit-msg": "npx commitlint --edit",
|
|
103
91
|
"pre-commit": "npx nano-staged"
|
|
92
|
+
},
|
|
93
|
+
"scripts": {
|
|
94
|
+
"clean": "rm -rf node_modules",
|
|
95
|
+
"contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
|
|
96
|
+
"coverage": "c8 report --reporter=text-lcov > coverage/lcov.info",
|
|
97
|
+
"lint": "standard",
|
|
98
|
+
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
|
|
99
|
+
"pretest": "npm run lint",
|
|
100
|
+
"release": "standard-version -a",
|
|
101
|
+
"release:github": "github-generate-release",
|
|
102
|
+
"release:tags": "git push --follow-tags origin HEAD:master",
|
|
103
|
+
"test": "c8 ava"
|
|
104
104
|
}
|
|
105
|
-
}
|
|
105
|
+
}
|