-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
121 lines (121 loc) · 2.66 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "efp-seq_browser",
"contributors": [
{
"name": "Alexander Sullivan",
"email": "[email protected]",
"url": "https://alexjsully.me/"
},
{
"name": "Priyank Purohit"
},
{
"name": "Nowlan H. Freese"
},
{
"name": "Asher Pasha"
},
{
"name": "Eddi Esteban"
},
{
"name": "Jamie Waese",
"website": "http://www.waese.com/#"
},
{
"name": "Alison Wu"
},
{
"name": "Michelle Chen"
},
{
"name": "Chih Ying Chin"
},
{
"name": "Richard Song"
},
{
"name": "Sneha Ramesh Watharkar"
},
{
"name": "Agnes P. Chan"
},
{
"name": "Vivek Krishnakumar"
},
{
"name": "Matthew W. Vaughn"
},
{
"name": "Chris Town"
},
{
"name": "Ann E. Loraine",
"url": "https://lorainelab.org/"
},
{
"name": "Nicholas Provart",
"email": "[email protected]",
"url": "https://bar.utoronto.ca/"
}
],
"version": "1.4.0",
"private": true,
"description": "Search among 113 RNA-seq data sets used by Araport 11 to reannotate the Arabidopsis genome (Cheng et al. 2016, http://biorxiv.org/content/early/2016/04/05/047308). The eFP-Seq Browser will retrieve the number of reads mapped and display these above the desired Araport 11 gene model. You can sort or filter the columns.",
"devDependencies": {
"concurrently": "^9.0.1",
"http-server": "^14.1.1",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"workbox-cli": "^7.1.0"
},
"main": "index.html",
"scripts": {
"install:all": "npm install && pip install -r requirements.txt && npm audit fix",
"prettier": "prettier --write ./",
"prettier:check": "prettier --check ./",
"start": "nodemon --watch . -e js,html,css,cgi --exec \"npm run start:serve\"",
"start:backend": "python3 -m http.server --cgi 3040",
"start:serve": "concurrently \"npm run start:backend\" \"npm run start:web\"",
"start:web": "http-server ./ -p 3030 --cors -c-1",
"validate": "npm run prettier",
"workbox": "workbox generateSW"
},
"bugs": {
"url": "https://github.com/BioAnalyticResource/eFP-Seq_Browser/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BioAnalyticResource/eFP-Seq_Browser.git"
},
"keywords": [
"bioinformatic",
"computational",
"bioinformatics",
"rna",
"rna-seq",
"efp-seq browser",
"efp",
"browser",
"data",
"data visualization",
"visualization",
"plant",
"biology",
"arabidopsis",
"arabidopsis thaliana",
"a thaliana",
"provart",
"rna-seq mapping",
"mapping",
"webapp",
"web",
"application",
"bam",
"alternative",
"splicing",
"database"
],
"license": "GPL-2.0",
"homepage": "https://github.com/BioAnalyticResource/eFP-Seq_Browser#readme"
}