Initial commit
parents
No related branches found
No related tags found
Showing
- .eslintrc 11 additions, 0 deletions.eslintrc
- .gitignore 86 additions, 0 deletions.gitignore
- .nvmrc 1 addition, 0 deletions.nvmrc
- LICENSE 7 additions, 0 deletionsLICENSE
- README.md 14 additions, 0 deletionsREADME.md
- gitlab-ci.yml 30 additions, 0 deletionsgitlab-ci.yml
- package.json 44 additions, 0 deletionspackage.json
- src/index.js 0 additions, 0 deletionssrc/index.js
.eslintrc
0 → 100644
.gitignore
0 → 100644
.nvmrc
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
gitlab-ci.yml
0 → 100644
package.json
0 → 100644
{ | |||
"name": "@pubsweet/db-manager", | |||
"version": "0.0.1", | |||
"description": "Provides database management utilities to Pubsweet apps.", | |||
"main": "src/index.js", | |||
"scripts": { | |||
"test": "NODE_ENV=test jest --runInBand --no-cache", | |||
"lint": "eslint src test", | |||
"vuln-test": "nsp check --output checkstyle" | |||
}, | |||
"repository": { | |||
"type": "git", | |||
"url": "git@gitlab.coko.foundation:yld/db-manager.git" | |||
}, | |||
"keywords": [ | |||
"pubsweet", | |||
"database" | |||
], | |||
"engines": { | |||
"node": ">=7.9.0", | |||
"npm": ">=3.0.0" | |||
}, | |||
"jest": { | |||
"testMatch": [ | |||
"**/test/**/*.js" | |||
], | |||
"collectCoverage": true, | |||
"collectCoverageFrom": [ | |||
"src/**/*.js" | |||
], | |||
"modulePaths": [ | |||
"<rootDir>/node_modules" | |||
], | |||
"testEnvironment": "node", | |||
"verbose": true | |||
}, | |||
"author": "Samuel Galson", | |||
"license": "MIT", | |||
"devDependencies": { | |||
"jest": "^21.1.0", | |||
"nsp": "^2.8.0", | |||
"standard": "^10.0.3" | |||
} | |||
} |
src/index.js
0 → 100644
Please register or sign in to comment