-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.93 KB
/
package.json
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
{
"name": "link-discoverer",
"version": "1.3.0",
"description": "",
"main": "index.js",
"config": {
"imageRepo": "gcr.io/g5-images/link-discoverer",
"imageName": "link-discoverer"
},
"repository": {
"type": "git",
"url": "git+https://github.com/g5search/link-discoverer"
},
"scripts": {
"docker:build": "source .buildenv && docker build -t $npm_package_config_imageName .",
"docker:run": "docker run -p 8085:8085 $npm_package_config_imageName",
"docker:tag:prime": "branch=$(git rev-parse --symbolic-full-name --abbrev-ref HEAD); sha=$(git rev-parse $branch); docker tag $npm_package_config_imageName $npm_package_config_imageRepo:$branch-$sha-prime",
"docker:tag:staging": "branch=$(git rev-parse --symbolic-full-name --abbrev-ref HEAD); sha=$(git rev-parse $branch); docker tag $npm_package_config_imageName $npm_package_config_imageRepo:$branch-$sha",
"docker:tag:prod": " docker tag $npm_package_config_imageName $npm_package_config_imageRepo:$npm_package_version",
"docker:push:prod": "docker push $npm_package_config_imageRepo:$npm_package_version",
"docker:push:staging": "branch=$(git rev-parse --symbolic-full-name --abbrev-ref HEAD); sha=$(git rev-parse $branch); docker push $npm_package_config_imageRepo:$branch-$sha",
"docker:push:prime": "branch=$(git rev-parse --symbolic-full-name --abbrev-ref HEAD); sha=$(git rev-parse $branch); docker push $npm_package_config_imageRepo:$branch-$sha-prime",
"dev": "nodemon ./index.js",
"test": "jest"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tylrhas/link-discoverer/issues"
},
"homepage": "https://github.com/tylrhas/link-discoverer#readme",
"dependencies": {
"axios": "^0.20.0",
"cheerio": "^1.0.0-rc.3",
"express": "^4.17.1"
},
"devDependencies": {
"jest": "^26.4.2",
"nodemon": "^2.0.4"
},
"jest": {
"testPathIgnorePatterns": [
"__tests__/config/"
]
}
}