-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 900 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 900 Bytes
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
{
"name": "ensembl-transcripts",
"version": "1.0.0",
"description": "A simple webapp for drawing Ensembl gene transcripts",
"repository": "github:veidenberg/ensembl-transcripts",
"homepage": "https://veidenberg.github.io/ensembl-transcripts/",
"author": "andres.veidenberg@gmail.com",
"license": "MIT",
"main": "app.js",
"scripts": {
"start": "python -m SimpleHTTPServer 8000",
"test:unit": "jest",
"test:e2e": "$(npm bin)/cypress run --config integrationFolder=tests/integration,screenshotOnRunFailure=false,video=false --config-file false --headed --no-exit"
},
"devDependencies": {
"npm": "^7.0.12",
"install": "^0.13.0",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12",
"@testing-library/vue": "^5.4.0",
"@testing-library/jest-dom": "^5.11.6",
"cypress": "^5.6.0"
},
"jest": {
"testMatch": [ "**/tests/unit/*.js" ]
}
}