-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.42 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.42 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
{
"name": "ashion-ingest",
"version": "3.5.0",
"main": "src/index.js",
"repository": "git@bitbucket.org:lifeomic/ashion-ingest.git",
"author": "LifeOmic <development@lifeomic.com>",
"license": "UNLICENSED",
"scripts": {
"lint": "eslint .",
"clean": "rm -rf target work",
"pretest": "yarn clean && yarn lint && mkdir -p target",
"test": "ENV=ava ava test/unit --verbose --serial",
"jenkins-test": "mkdir -p target && ENV=ava ava test/unit --tap --serial | tap-xunit --package unit > target/unit-test-report.xml",
"build": "mkdir -p target/build && cp -r package.json yarn.lock src target/build/ && cd target/build && yarn install --prod",
"docker-build": "yarn build && docker build -t $npm_package_name . && docker tag $npm_package_name:latest lifeomic/$npm_package_name:$npm_package_version"
},
"dependencies": {
"argparse": "^1.0.10",
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"glob": "^7.1.4",
"line-reader": "^0.4.0",
"mkdirp": "^0.5.1",
"pdf2json": "^1.2.0",
"tar": "^7.5.7",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@lifeomic/eslint-plugin-node": "^1.3.0",
"ava": "^1.0.0",
"eslint": "^6.1.0",
"tap-xunit": "^2.4.1"
},
"eslintConfig": {
"extends": "plugin:@lifeomic/node/recommended",
"rules": {
"security/detect-non-literal-fs-filename": "off"
}
},
"eslintIgnore": [
"node_modules",
"target"
]
}