-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.17 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
{
"name": "@fensak-io/reng",
"version": "2.0.2",
"author": "Fensak, LLC <[email protected]> (https://fensak.io)",
"license": "(AGPL-3.0-or-later OR BUSL-1.1)",
"description": "Fensak Rules Engine, which drives execution of user defined rules on the Fensak platform.",
"homepage": "https://github.com/fensak-io/reng#readme",
"bugs": {
"url": "https://github.com/fensak-io/reng/issues"
},
"type": "module",
"source": "src/index.ts",
"main": "./dist/index.cjs",
"module": "./dist/module.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/index.cjs"
}
},
"targets": {
"main": {
"includeNodeModules": [
"JS-Interpreter"
]
},
"module": {
"includeNodeModules": [
"JS-Interpreter"
]
}
},
"scripts": {
"lint": "eslint .",
"fmt": "prettier -w .",
"test": "jest",
"build": "parcel build",
"release": "semantic-release"
},
"dependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.2",
"@fensak-io/front-matter": "^1.0.0",
"@octokit/rest": "^20.0.2",
"atlassian-jwt": "^2.0.2",
"babel-preset-minify": "^0.5.2",
"jose": "^5.0.1",
"json5": "^2.2.3",
"microdiff": "^1.3.2",
"toml": "^3.0.0",
"yaml": "^2.3.3"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@octokit/types": "^12.1.0",
"@parcel/config-default": "2.9.3",
"@parcel/packager-ts": "2.9.3",
"@parcel/transformer-typescript-types": "2.9.3",
"@semantic-release/git": "^10.0.1",
"@types/babel__core": "^7.20.2",
"@types/node": "^20.8.2",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"JS-Interpreter": "git://github.com/yorinasub17/JS-Interpreter.git#c1e9044f99041dead8c6a49a4f3784486df0fdd9",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"parcel": "^2.9.3",
"prettier": "3.0.3",
"semantic-release": "^22.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}