-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 917 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 917 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
28
29
30
31
32
33
34
35
36
37
{
"name": "vtir",
"version": "1.0.0",
"description": "> **A music editor and player for the AY-3-8910 / YM2149F sound chips,** > originally used in the ZX Spectrum home computer.",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "jest",
"test:e2e": "playwright test --config=playwright.config.js"
},
"jest": {
"testEnvironment": "jest-environment-jsdom",
"testMatch": [
"**/src/**/*.test.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/corbym/vtir.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/corbym/vtir/issues"
},
"homepage": "https://github.com/corbym/vtir#readme",
"devDependencies": {
"@playwright/test": "^1.59.1",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0"
}
}