Merge branch 'issue/109' into 'develop'
Issue #109: Upgrade node and modules See merge request c3sl/blendb!90
No related branches found
No related tags found
Showing
- .gitlab-ci.yml 1 addition, 1 deletion.gitlab-ci.yml
- Dockerfile 1 addition, 1 deletionDockerfile
- config/config.yaml.example 13 additions, 2 deletionsconfig/config.yaml.example
- package.json 35 additions, 23 deletionspackage.json
- src/common/types.ts 3 additions, 3 deletionssrc/common/types.ts
- src/util/configParser.ts 1 addition, 1 deletionsrc/util/configParser.ts
- test/mocha.opts 1 addition, 0 deletionstest/mocha.opts
- tslint.json 12 additions, 1 deletiontslint.json
- yarn.lock 3315 additions, 1505 deletionsyarn.lock
... | @@ -6,7 +6,7 @@ | ... | @@ -6,7 +6,7 @@ |
"scripts": { | "scripts": { | ||
"start": "env $(cat config/config.env ) node index", | "start": "env $(cat config/config.env ) node index", | ||
"lint": "tslint -s node_modules/tslint-stylish -t stylish src/**/*.ts test/**/*.ts", | "lint": "tslint -s node_modules/tslint-stylish -t stylish src/**/*.ts test/**/*.ts", | ||
"test": "env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x \"**/*.spec.ts\" -e .ts _mocha", | "test": "env $(cat config/test.env) ts-node node_modules/nyc/bin/nyc.js mocha", | ||
"show-coverage": "xdg-open coverage/lcov-report/index.html", | "show-coverage": "xdg-open coverage/lcov-report/index.html", | ||
"doc-api": "raml2html -i specs/blendb-api-v1.raml -o doc/api-v1-reference.html", | "doc-api": "raml2html -i specs/blendb-api-v1.raml -o doc/api-v1-reference.html", | ||
"schema": "env $(cat config/config.env ) ts-node scripts/schema.ts config/config.yaml schema.sql", | "schema": "env $(cat config/config.env ) ts-node scripts/schema.ts config/config.yaml schema.sql", | ||
... | @@ -14,6 +14,14 @@ | ... | @@ -14,6 +14,14 @@ |
"test-mode": "ts-node scripts/loadTest.ts && node index", | "test-mode": "ts-node scripts/loadTest.ts && node index", | ||
"doc-code": "typedoc --mode 'file' --module 'commonjs' --target 'ES6' --ignoreCompilerErrors --exclude '**/*.spec.ts' --out 'doc/code' 'src'" | "doc-code": "typedoc --mode 'file' --module 'commonjs' --target 'ES6' --ignoreCompilerErrors --exclude '**/*.spec.ts' --out 'doc/code' 'src'" | ||
}, | }, | ||
"nyc": { | |||
"include": ["src/**/*.ts"], | |||
"extension": [".ts"], | |||
"require": ["ts-node/register"], | |||
"reporter": ["text-summary", "html"], | |||
"sourceMap": true, | |||
"instrument": true | |||
}, | |||
"repository": { | "repository": { | ||
"type": "git", | "type": "git", | ||
"url": "git@gitlab.c3sl.ufpr.br:c3sl/blendb.git" | "url": "git@gitlab.c3sl.ufpr.br:c3sl/blendb.git" | ||
... | @@ -21,31 +29,35 @@ | ... | @@ -21,31 +29,35 @@ |
"author": "Centro de Computação Científica e Software Livre (C3SL)", | "author": "Centro de Computação Científica e Software Livre (C3SL)", | ||
"license": "GPL-3.0", | "license": "GPL-3.0", | ||
"dependencies": { | "dependencies": { | ||
"@types/async": "^2.0.40", | "@types/async": "^3.0.1", | ||
"@types/chai": "^3.4.33", | "@types/chai": "^4.2.0", | ||
"@types/express": "^4.0.33", | "@types/express": "^4.17.1", | ||
"@types/js-yaml": "^3.5.29", | "@types/js-yaml": "^3.12.1", | ||
"@types/pg": "^6.1.45", | "@types/pg": "^7.11.0", | ||
"async": "=2.4.1", | "async": "^3.1.0", | ||
"express": "^4.0.33", | "express": "^4.17.1", | ||
"js-yaml": "^3.8.2", | "js-yaml": "^3.13.1", | ||
"json-2-csv": "^3.5.5", | "json-2-csv": "^3.5.6", | ||
"monetdb": "^1.1.4", | "monetdb": "^1.1.4", | ||
"osprey": "^0.3.2", | "osprey": "^0.3.2", | ||
"pg": "^6.1.5", | "pg": "^7.12.1", | ||
"ts-node": "^3.1.0", | "raml-parser": "^0.8.18", | ||
"typescript": "^2.4.1" | "ts-node": "^8.3.0", | ||
"typescript": "^3.5.3" | |||
}, | }, | ||
"devDependencies": { | "devDependencies": { | ||
"@types/mocha": "^2.2.32", | "@types/mocha": "^5.2.7", | ||
"@types/supertest": "^2.0.0", | "@types/supertest": "^2.0.8", | ||
"chai": "^3.4.33", | "chai": "^4.2.0", | ||
"istanbul": "1.1.0-alpha.1", | "mocha": "^6.2.0", | ||
"mocha": "^3.1.0", | "nyc": "^14.1.1", | ||
"raml2html": "^3.0.1", | "raml2html": "^7.4.0", | ||
"supertest": "^3.0.0", | "supertest": "^4.0.2", | ||
"tslint": "^3.15.1", | "tslint": "^5.19.0", | ||
"tslint-stylish": "^2.1.0-beta", | "tslint-stylish": "^2.1.0", | ||
"typedoc": "^0.11.1" | "typedoc": "^0.15.0" | ||
}, | |||
"engines": { | |||
"node": "^10.16.3" | |||
} | } | ||
} | } |
This diff is collapsed.
Please register or sign in to comment