-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.7 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
{
"name": "jbrowse-plugin-hgb",
"version": "0.1.0",
"description": "JBrowse 2 HGB API plugin",
"repository": "github:6br/jbrowse-plugin-hgb",
"jbrowse-plugin": {
"name": "HGB"
},
"main": "dist/index.js",
"module": "dist/jbrowse-plugin-hgb.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"start": "tsdx watch --verbose --noClean --format umd --name JBrowsePluginHGB --onFirstSuccess \"yarn serve --cors --listen 9000 .\"",
"prebuild": "npm run clean",
"build": "tsdx build --format cjs,esm,umd --name JBrowsePluginHGB && cp distconfig.json dist/config.json",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "npm run build",
"prepublishOnly": "yarn test",
"postinstall": "jbrowse-plugin-postinstall",
"postversion": "git push --follow-tags"
},
"files": [
"dist",
"src"
],
"author": "6br",
"license": "MIT",
"keywords": [
"jbrowse",
"jbrowse2"
],
"prettier": {
"trailingComma": "all"
},
"peerDependencies": {
"@jbrowse/core": "^1.0.3"
},
"devDependencies": {
"@babel/preset-react": "^7.10.4",
"@jbrowse/core": "^1.0.3",
"@jbrowse/development-tools": "^1.0.3",
"@jbrowse/plugin-linear-genome-view": "^1.0.3",
"@jbrowse/plugin-wiggle": "^1.0.3",
"@material-ui/core": "^4.12.2",
"@material-ui/lab": "^4.0.0-alpha.45",
"@types/react": "^17.0.0",
"mobx": "^5.0.0",
"mobx-react": "^6.0.0",
"mobx-state-tree": "3.14.1",
"react": "^16.8.0",
"react-is": "^16.13.1",
"rimraf": "^3.0.2",
"rxjs": "^6.0.0",
"serve": "^11.3.2",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"dependencies": {
"json-stable-stringify": "^1.0.1"
}
}