-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 2.25 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
47
48
49
50
51
52
53
54
55
56
{
"name": "ibowankenobi-i-pv",
"version": "0.1.29",
"org_ipv": {
"version": "2.5"
},
"description": "Interactive Protein Sequence VIsualization/Viewer - Interactive Circos",
"main": "./i-pv/script/SNPtoAA.pl",
"access": "public",
"scripts": {
"replaceMasterBranch": "cross-env-shell BRANCH_NAME=v1.46 node ./util/replaceMasterBranch.js",
"bumpPatchNPM": "cross-env-shell npm version patch -no-git-tag-version --force",
"bumpMinorNPM": "cross-env-shell npm version minor -no-git-tag-version --force",
"bumpMajorNPM": "cross-env-shell npm version major -no-git-tag-version --force",
"bumpPatchIPV": "cross-env-shell BUMPTYPE=patch node ./util/bumpVersion.js",
"bumpMinorIPV": "cross-env-shell BUMPTYPE=minor node ./util/bumpVersion.js",
"bumpMajorIPV": "cross-env-shell BUMPTYPE=major node ./util/bumpVersion.js",
"bumpPatch": "npm run bumpPatchIPV && npm run bumpPatchNPM",
"bumpMinor": "npm run bumpMinorIPV && npm run bumpMinorNPM",
"bumpMajor": "npm run bumpMajorIPV && npm run bumpMajorNPM",
"gitCommit": "cross-env-shell git commit -m ${npm_package_version}",
"gitTag": "cross-env-shell node ./util/gitTag.js",
"gitAddAll": "git add -A",
"gitPush": "git push",
"gitPushTags": "git push --tags --force",
"setGit": "npm run gitAddAll && npm run gitCommit && npm run gitTag && npm run gitPush && npm run gitPushTags",
"publishRest": "npm run setGit && npm publish && npm run syncMirror",
"publishPatch": "npm run bumpPatch && npm run publishRest",
"publishPatchNPM": "npm run bumpPatchNPM && npm run publishRest",
"publishMinor": "npm run bumpMinor && npm run publishRest",
"publishFeature": "npm run bumpMinorNPM && npm run bumpMajorIPV && npm run publishRest",
"publishMajor": "npm run bumpMajor && npm run publishRest",
"syncMirror": "cross-env-shell node ./util/syncMirror.js",
"test": "cross-env-shell node ./util/test/outputTest.js"
},
"keywords": [
"interactive",
"protein",
"javascript",
"algorithm",
"sequence",
"visualization",
"genetics",
"proteomics",
"genomics",
"omics"
],
"author": "Ibrahim Tanyalcin",
"license": "MIT",
"devDependencies": {
"cross-env": "^7.0.3"
},
"dependencies": {
"rafx": "^0.0.20"
}
}