-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 928 Bytes
/
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
{
"name": "business-rules-processor",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index",
"scripts": {
"build": "run-s clean build:parser build:src",
"build:src": "tsc -p ./tsconfig.json",
"build:parser": "node ./scripts/create-parser.js ./src/parser/parser.ts",
"clean": "rimraf ./dist/*",
"prepublishOnly": "run-s build"
},
"files": [
"dist"
],
"author": "Jeremy Albright",
"license": "ISC",
"dependencies": {
"json-logic-js": "^2.0.1",
"npm-run-all": "^4.1.5",
"peggy": "^1.2.0",
"ts-node": "^10.2.0",
"ts-pegjs": "^1.1.1",
"typescript": "^4.2.4",
"yargs": "^17.1.1"
},
"devDependencies": {
"@jtechsvcs/eslint": "^1.0.2",
"@types/json-logic-js": "^1.2.1",
"@types/node": "^16.6.1",
"@types/yargs": "^17.0.2",
"fs-extra": "^10.0.0",
"rimraf": "^3.0.2",
"type-fest": "^2.0.0"
}
}