-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.73 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.73 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "flywheel-rules",
"version": "1.0.0",
"description": "A powerful rule engine for dynamic field configuration using a condition-action pattern",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"dev": "ts-node src/index.ts",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"prepublishOnly": "npm run lint && npm run format:check && npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Muffinmann/Flywheel.git"
},
"keywords": [
"rules",
"engine",
"forms",
"validation",
"logic",
"conditions",
"actions",
"dynamic",
"field",
"configuration",
"typescript",
"dependency-tracking",
"business-rules"
],
"author": "Muffinmann",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Muffinmann/Flywheel/issues"
},
"homepage": "https://github.com/Muffinmann/Flywheel#readme",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^5.5.3",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18.0.0"
}
}