This repository was archived by the owner on Feb 24, 2026. It is now read-only.
forked from open-policy-agent/opa
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.81 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.81 KB
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
52
53
54
55
56
57
58
{
"name": "live-blocks",
"version": "0.0.0",
"description": "",
"license": "Apache-2.0",
"author": "",
"browser": "dist/live-blocks.js",
"scripts": {
"bundle-web": "rollup -c",
"check": "sort-package-json && npm run test",
"clear-bundle-cache": "rm -rf ./dist",
"clear-caches": "npm run clear-bundle-cache && npm run clear-opa-cache && npm run clear-node-cache",
"clear-node-cache": "rm -rf ./node_modules",
"clear-opa-cache": "rm -rf ./opa_versions",
"inject": "./scripts/inject",
"install-deps": "./scripts/install-deps",
"preprocess": "node -r esm src/preprocess/index.js",
"test": "node -r esm ./node_modules/.bin/mocha"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"codemirror": "^5.65.6",
"codemirror-rego": "^1.1.0",
"esm": "^3.2.25",
"node-fetch": "^2.6.1",
"tmp": "^0.2.1"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/preset-env": "^7.5.2",
"@babel/register": "^7.10.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"acorn": ">=6.4.1",
"browserslist": ">=4.16.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"core-js": "^3.1.4",
"dot-prop": ">=5.1.1",
"glob-parent": ">=5.1.2",
"minimist": ">=1.2.2",
"mocha": "^8.1.1",
"normalize-url": ">=4.5.1",
"postcss": "^8.2.10",
"regenerator-runtime": "^0.13.2",
"rollup": "^2.42.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"serialize-javascript": ">=3.1.0",
"sinon": "^11.1.1",
"sort-package-json": "^1.22.1"
}
}