-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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
{
"name": "@zregvart/opa-inspect",
"version": "0.0.0",
"description": "opa inspect functionality in JavaScript",
"engines": {
"node": ">=18.0.0"
},
"main": "main.js",
"browser": "browser.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/zregvart/opa-inspect-js.git"
},
"keywords": [
"opa",
"rego"
],
"author": "Zoran Regvart <zoran@regvart.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zregvart/opa-inspect-js/issues"
},
"homepage": "https://github.com/zregvart/opa-inspect-js#readme",
"scripts": {
"test": "node --experimental-vm-modules ./node_modules/.bin/jest --detectOpenHandles"
},
"files": [
"*.js",
"*.js.map",
"inspect.wasm",
"!example.js",
"!*.test.js"
],
"devDependencies": {
"jest": "^29.0.2",
"map-stream": "^0.0.7",
"puppeteer": "^24.1.1",
"vinyl-fs": "^4.0.0"
},
"overrides": {
"glob-parent": "6.0.2"
},
"workspaces": [
".",
"examples/*"
]
}