forked from biowonks/projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.12 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "core-lib",
"version": "1.1.0",
"description": "Common project code for BioWonks' node projects",
"scripts": {
"test": "NODE_PATH=node_modules mocha -r ../_common/test.globals.js 'src/**/*.tests.js'",
"cover": "nyc yarn test",
"eslint": "eslint 'src/**/*.js'",
"eslint:fix": "yarn eslint --fix"
},
"pre-commit": [
"eslint"
],
"author": "BioWonks",
"contributors": [
{
"name": "Luke Ulrich",
"email": "lukeulrich@users.noreply.github.com"
},
{
"name": "Ogun Adebali"
},
{
"name": "Davi Ortega"
},
{
"name": "Amit Upadhyay"
}
],
"license": "MIT",
"dependencies": {
"bunyan": "1.8.14",
"pg": "8.4.2",
"public-ip": "4.0.2",
"sequelize": "6.3.5",
"sequelize-migrator": "https://github.com/lukeulrich/sequelize-migrator.git",
"sequelize-model-loader": "https://github.com/lukeulrich/sequelize-model-loader.git",
"split": "1.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.12.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"pre-commit": "^1.1.3",
"sinon": "^9.2.1"
}
}