generated from GMOD/jbrowse-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.02 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
{
"version": "0.0.1",
"name": "jbrowse-plugin-my-project",
"keywords": [
"jbrowse",
"jbrowse2"
],
"main": "dist/index.js",
"module": "dist/jbrowse-plugin-my-project.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"setup": "node scripts/setup.js && npm run browse-install",
"clean": "rimraf dist",
"start": "tsdx watch --verbose --noClean --format umd --name JBrowsePluginMyProject --onFirstSuccess \"serve --cors --listen 9000 .\"",
"prebuild": "npm run clean",
"build": "tsdx build --format cjs,esm,umd --name JBrowsePluginMyProject",
"browse-install": "cd .jbrowse && rm -rf * && jbrowse create .",
"browse": "cd .jbrowse && cp ../jbrowse_config.json . && mv jbrowse_config.json config.json && npx serve .",
"test": "tsdx test",
"test:cy": "cypress run --headless --browser chrome",
"e2e": "start-test start 9000 browse 5000 test:cy",
"cypress": "cypress open",
"lint": "tsdx lint",
"prepublishOnly": "npm test",
"prepare": "npm run build",
"postinstall": "jbrowse-plugin-postinstall",
"postversion": "git push --follow-tags"
},
"jbrowse-plugin": {
"name": "MyProject"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/cypress/"
]
},
"dependencies": {},
"peerDependencies": {
"@jbrowse/core": "^1.0.4"
},
"devDependencies": {
"@babel/preset-react": "^7.10.4",
"@jbrowse/cli": "^1.0.3",
"@jbrowse/core": "^1.0.4",
"@jbrowse/development-tools": "^1.0.3",
"@material-ui/core": "^4.9.13",
"@material-ui/lab": "^4.0.0-alpha.45",
"@types/react": "^17.0.0",
"cypress": "^6.2.1",
"mobx": "^5.0.0",
"mobx-react": "^6.0.0",
"mobx-state-tree": "3.14.1",
"react": "^16.8.0",
"rimraf": "^3.0.2",
"rxjs": "^6.0.0",
"serve": "^11.3.2",
"start-server-and-test": "^1.11.7",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"private": true
}