58ca4e68db
- Go backend API with full CRUD for all modules (CRM, Sales, Finance, HR, Legal, Marketing, Support, Purchase, Inventory, Projects, Automation, Analytics) - Rust analytics service with parallel report generation - C runtime with POSIX shared memory IPC - PostgreSQL schema with 30+ tables, full migrations - Redis cache, sessions, pub/sub - Kafka event streaming with Zookeeper - WebSocket hub for real-time updates - Automation engine with cron jobs, workflows, event triggers - JWT authentication, multi-tenant from start - Docker Compose with all services - Nginx reverse proxy with rate limiting - Integration tests passing - Feature gap analysis against Fortnox/Odoo/Visma Refs: BOC-001
26 lines
607 B
JSON
26 lines
607 B
JSON
{
|
|
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
|
|
"name": "touch",
|
|
"description": "like touch(1) in node",
|
|
"version": "3.1.1",
|
|
"repository": "git://github.com/isaacs/node-touch.git",
|
|
"bin": {
|
|
"nodetouch": "./bin/nodetouch.js"
|
|
},
|
|
"license": "ISC",
|
|
"scripts": {
|
|
"test": "tap test/*.js --100 -J",
|
|
"preversion": "npm test",
|
|
"postversion": "npm publish",
|
|
"postpublish": "git push origin --all; git push origin --tags"
|
|
},
|
|
"devDependencies": {
|
|
"mutate-fs": "^1.1.0",
|
|
"tap": "^10.7.0"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"bin/nodetouch.js"
|
|
]
|
|
}
|