-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1.25 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
{
"name": "@totalsoft/rules-algebra",
"version": "5.0.37",
"description": "Business rules api via functional composition",
"main": "index.js",
"scripts": {
"prebuild": "rimraf build",
"build": "yarn build:cjs && yarn build:esm && yarn build:copy-files",
"build:cjs": "cross-env BABEL_ENV=cjs babel src/ --out-dir build/ --ignore \"**/__tests__\" --ignore \"**/__mocks__\"",
"build:esm": "cross-env BABEL_ENV=esm babel src/ --out-dir build/esm --ignore \"**/__tests__\" --ignore \"**/__mocks__\"",
"build:copy-files": "node ../../scripts/copy-files.js",
"prepare": "yarn run build",
"test": "jest --watchAll",
"tslint": "tslint -p tsconfig.json \"{src,test}/**/*.{ts,tsx}\""
},
"author": "TotalSoft",
"homepage": "https://github.com/osstotalsoft/jsbb/tree/master/packages/rules-algebra",
"repository": {
"type": "git",
"url": "https://github.com/osstotalsoft/jsbb.git",
"directory": "packages/rules-algebra"
},
"license": "ISC",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@totalsoft/change-tracking": "^5.0.37",
"@totalsoft/zion": "^5.0.22",
"daggy": "^1.4.0",
"fantasy-land": "^4.1.0",
"uniqid": "^5.2.0"
},
"peerDependencies": {
"i18next": ">= 17.0.11"
}
}