-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "@extism/extism-plv8",
"version": "1.0.0-rc1",
"description": "Extism runtime for plv8",
"scripts": {
"build": "node build.js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"test": "cross-env NODE_OPTIONS='--experimental-wasi-unstable-preview1' jest --coverage --config jest.config.js",
"test-deno": "deno test -A ./tests/mod.test.ts"
},
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist/*"
],
"main": "dist/node/index.js",
"author": "The Extism Authors <oss@extism.org>",
"license": "BSD-3-Clause",
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/sync-fetch": "^0.4.0",
"esbuild": "^0.15.13",
"esbuild-jest": "^0.5.0",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.23.20",
"typescript": "^4.8.4"
},
"dependencies": {
"base64-js": "^1.5.1",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"ejs": "^3.1.10",
"js-sha256": "^0.11.0",
"minimatch": "^9.0.3",
"sync-fetch": "^0.5.2"
}
}