@project-sunbird/ext-framework-server
Version:
Extensible framework for sunbird extensions on server side
90 lines • 2.43 kB
JSON
{
"name": "@project-sunbird/ext-framework-server",
"version": "8.0.0",
"description": "Extensible framework for sunbird extensions on server side",
"scripts": {
"start": "tsc -w",
"test": "nyc mocha -r ts-node/register ./**/*.spec.ts --reporter mochawesome",
"build": "node_modules/.bin/rimraf ./dist && tsc --noImplicitUseStrict && node_modules/.bin/cpy package.json ./dist && node_modules/.bin/cpy README.md ./dist",
"lint": "tslint --config ./tslint.json **/*.ts --force",
"gen-doc": "typedoc --out ./docs ./src --name Extensible-framework --mode file --module commonjs --target ES6"
},
"engines": {
"node": ">=7.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/project-sunbird/sunbird-ext-framework/tree/master/server"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"**/*.js"
],
"include": [
"./src/**/*.ts"
],
"reporter": [
"html",
"text-summary"
],
"all": true
},
"keywords": [
"sunbird",
"Extensible framework",
"plugins"
],
"author": "Sunil A S<sunils@ilimi.in>",
"license": "MIT",
"devDependencies": {
"@types/chai": "4.1.2",
"@types/continuation-local-storage": "3.2.1",
"@types/elasticsearch": "5.0.19",
"@types/node": "20.12.5",
"@types/express": "4.17.9",
"@types/glob": "5.0.35",
"@types/lodash": "4.14.104",
"@types/mocha": "2.2.48",
"@types/sinon": "4.1.3",
"chai": "4.1.2",
"cpy-cli": "2.0.0",
"mocha": "5.0.1",
"mochawesome": "3.0.2",
"node-mocks-http": "1.7.0",
"nyc": "11.8.0",
"rimraf": "2.6.2",
"sinon": "4.3.0",
"ts-node": "4.1.0",
"tslint": "5.10.0",
"tslint-config-prettier": "1.13.0",
"tslint-config-standard": "7.0.0",
"typedoc": "0.11.1",
"typescript": "5.4.4"
},
"dependencies": {
"@project-sunbird/telemetry-sdk": "1.3.0",
"axios": "1.6.8",
"continuation-local-storage": "3.2.1",
"elasticsearch": "16.7.3",
"express": "4.19.2",
"express-cassandra": "2.2.2",
"ansi-regex":"6.0.1",
"glob": "7.1.2",
"hashids": "1.1.4",
"keycloak-connect": "4.0.0-beta.2",
"lodash": "4.17.21",
"log4js": "3.0.6",
"mitt": "1.1.3",
"nano": "8.0.0",
"pouchdb": "7.1.1",
"pouchdb-find": "7.1.1",
"rxjs": "6.2.1",
"typescript-ioc": "1.2.4",
"uuid": "3.2.1"
}
}