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
67 lines (67 loc) · 1.82 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.82 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "mist-lib",
"version": "1.1.0",
"description": "Common MiST project code",
"scripts": {
"preinstall": "node ../bin/merge-deps.js -i ../core-lib/package.json ../seqdepot-lib/package.json ./package.json",
"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",
"undo-migration": "NODE_PATH=node_modules src/db/undo-migration.js -y | node_modules/.bin/bunyan",
"create-stp-spec-migration": "NODE_PATH=node_modules src/tsv2migration.js"
},
"pre-commit": [
"eslint"
],
"author": "BioWonks",
"contributors": [
{
"name": "Luke Ulrich"
},
{
"name": "Ogun Adebali"
},
{
"name": "Davi Ortega"
},
{
"name": "Amit Upadhyay"
}
],
"license": "MIT",
"dependencies": {
"bunyan": "1.8.14",
"commander": "6.2.0",
"duplex-child-process": "1.0.1",
"inflection": "1.10.0",
"lodash": "4.17.20",
"mkdirp": "1.0.4",
"moment": "2.29.1",
"mv": "2.1.1",
"node-config-loader": "https://github.com/lukeulrich/node-config-loader.git",
"pg": "8.4.2",
"public-ip": "4.0.2",
"pumpify": "2.0.1",
"request": "2.88.2",
"request-promise": "4.2.6",
"rimraf": "3.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",
"through2": "4.0.2",
"universal-analytics": "0.4.23",
"xml2js": "0.4.23"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.12.1",
"mocha": "^8.2.1",
"nock": "^13.0.5",
"nyc": "^15.1.0",
"pre-commit": "^1.1.3",
"sinon": "^9.2.1",
"temp": "^0.9.4"
}
}