forked from open-policy-agent/npm-opa-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.21 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
49
50
51
{
"name": "@open-policy-agent/opa-wasm",
"version": "1.7.0",
"description": "Open Policy Agent WebAssembly SDK",
"main": "./src/index.cjs",
"types": "./dist/types/opa.d.ts",
"exports": {
"import": "./src/index.mjs",
"require": "./src/index.cjs"
},
"files": [
"capabilities.json",
"src",
"dist"
],
"scripts": {
"build": "./build.sh",
"lint": "git ls-files | xargs deno lint",
"fmt:check": "git ls-files | xargs deno fmt --check",
"fmt": "git ls-files | xargs deno fmt",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-policy-agent/npm-opa-wasm.git"
},
"keywords": [
"opa",
"wasm",
"policy"
],
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/open-policy-agent/npm-opa-wasm/issues"
},
"homepage": "https://github.com/open-policy-agent/npm-opa-wasm#readme",
"devDependencies": {
"esbuild": "^0.14.5",
"jest": "^28.0.1",
"puppeteer": "^14.0.0",
"semver": "^7.3.5",
"smart-deep-sort": "^1.0.2",
"tmp": "^0.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"sprintf-js": "^1.1.2",
"yaml": "^1.10.2"
}
}