rage-framework
Version:
## How to Install *server-side* ```bash npm install @rage-framework/server ```
39 lines (38 loc) • 955 B
JSON
{
"name": "@rage-framework/core",
"version": "0.1.2",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/katalist5296/rage-framework.git",
"directory": "packages/core"
},
"bugs": {
"url": "https://github.com/katalist5296/rage-framework/issues"
},
"scripts": {
"build": "npm run clean && npm run compile",
"build:watch": "tsc --watch --project tsconfig.build.json",
"clean": "rm -rf ./dist",
"compile": "tsc --project tsconfig.build.json",
"test": "jest --config ../../jest.config.js",
"test:watch": "jest --watchAll --config ../../jest.config.js"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"typescript": "^4.1.3"
}
}