forked from nathandunn/GenomeFeatureComponent
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 2.55 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
{
"name": "agr_genomefeaturecomponent",
"version": "0.3.24",
"description": "Provides SVG View for Genome Features rendered with the Apollo Track Web Service via JBrowse",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rm -rf dist/",
"rmdsstore": "find . -name '.DS_Store' -print -delete",
"cleanstart": "npm run clean && webpack && webpack-dev-server",
"start": "webpack && webpack-dev-server",
"lint": "npx eslint src/",
"buildandserve": "npm run clean && webpack && http-server -c-1 dist/",
"test": "NODE_ENV=test mocha-webpack --webpack-config webpack.config-test.js \"tests/index-test.js\"",
"cleanbuild": "npm run clean && webpack",
"build": "webpack",
"pack": "rm -rf dist && npm run rmdsstore && npm run build && npm pack"
},
"dependencies": {
"d3": "^5.7.0",
"d3-tip": "^0.9.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.0.1",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^9.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"expect": "latest",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"mocha": "^7.0.0",
"mocha-webpack": "^1.1.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.3.1",
"webpack-node-externals": "^1.7.2"
},
"author": "Nathan Dunn",
"contributors": [
{
"name": "Michael Gargano",
"email": "[email protected]",
"url": "https://github.com/iimpulse"
},
{
"name": "Paul Hale",
"email": "[email protected]",
"url": "https://github.com/pjhale"
},
{
"name": "Deepak Unni",
"email": "[email protected]",
"url": "https://github.com/deepakunni3"
},
{
"name": "Dan Kieth",
"url": "https://github.com/DoctorBud"
},
{
"name": "Nathan Dunn",
"email": "[email protected]",
"url": "https://github.com/nathandunn"
}
],
"homepage": "",
"license": "MIT",
"repository": "https://github.com/GMOD/GenomeFeatureComponent",
"keywords": [
"genome feature viewer",
"genomics",
"genes",
"transcripts"
]
}