-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"name": "@rettersoft/rbs-rule-engine",
"version": "0.2.2",
"description": "This package is for executing complex rules to manage various service flows in RBS ecosystem",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint './src/**/*.{js,ts,tsx}'",
"test": "jest --silent",
"test:watch": "jest --watchAll --experimentalDecorators",
"build": "tsc",
"watch": "tsc -w",
"clean": "rm -rf dist coverage",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/rettersoft/rbs-rule-engine.git"
},
"keywords": [
"rbs",
"rule",
"engine"
],
"author": "Retter Mobile",
"license": "MIT",
"bugs": {
"url": "https://github.com/rettersoft/rbs-rule-engine/issues"
},
"homepage": "https://github.com/rettersoft/rbs-rule-engine#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.3"
},
"files": [
"dist/**/*"
],
"dependencies": {
"date-fns": "^2.16.1",
"geolib": "^3.3.1"
}
}