-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.23 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "opa-compile-response-parser",
"version": "2.0.0",
"private": true,
"description": "An Open Policy Agent Compile Response Parser",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"typings": "./dist/cjs/index.d.ts",
"module": "./dist/esm/index.js",
"unpkg": "./dist/umd-prod/index.js",
"files": [
"dist",
"LICENSE"
],
"scripts": {
"test": "TS_NODE_PROJECT=test/tsconfig.json mocha -r ts-node/register -r tsconfig-paths/register \"test/**/*.spec.ts\"",
"build": "rollup -c -m",
"build-docs": "rimraf docs && typedoc --gaID UA-128574696-3 --theme default --includeVersion --out docs src/index.ts",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"prettier": "prettier --write 'src/*.js' 'src/*.ts'",
"eslint": "eslint src/*.ts",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:major": "npm version major && npm publish && git push --follow-tags",
"start-db": "cd test/docker/pg && docker-compose up -d",
"stop-db": "cd test/docker/pg && docker-compose down -v",
"start-es": "cd test/docker/es && docker-compose up -d",
"stop-es": "cd test/docker/es && docker-compose down -v",
"start-opa": "cd test/docker/opa && docker-compose up -d",
"stop-opa": "cd test/docker/opa && docker-compose down -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/t83714/opa-compile-response-parser.git"
},
"keywords": [
"OPA",
"Rego",
"AST",
"Compile",
"Partial Eval",
"Parser"
],
"author": "Jacky Jiang",
"license": "MIT",
"bugs": {
"url": "https://github.com/t83714/opa-compile-response-parser/issues"
},
"homepage": "https://github.com/t83714/opa-compile-response-parser#readme",
"dependencies": {
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@elastic/elasticsearch": "^7.2.0",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/fs-extra": "^8.0.0",
"@types/lodash": "^4.14.136",
"@types/lodash-es": "^4.17.3",
"@types/mocha": "^5.2.7",
"@types/node": "^18.7.18",
"@types/pg": "^8.6.5",
"@types/recursive-readdir": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"cross-fetch": "^3.1.5",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^8.1.0",
"lodash": "^4.17.21",
"mocha": "^6.1.4",
"pg": "^8.7.3",
"prettier": "^2.5.1",
"recursive-readdir": "^2.2.2",
"rimraf": "^2.6.3",
"rollup": "^2.79.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typedoc": "^0.22.18",
"tslib": "^2.3.1",
"typescript": "~4.2.4"
},
"sideEffects": false,
"npmName": "opa-compile-response-parser",
"npmFileMap": [
{
"basePath": "dist",
"files": [
"**/*"
]
}
]
}