-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.86 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
{
"name": "sfz-web-player",
"version": "0.0.36",
"description": "SFZ player using the Web Audio API",
"main": "dist/sfz.js",
"private": true,
"sideEffects": false,
"scripts": {
"analyze": "webpack --config webpack.prod.js --profile --json > stats.json",
"build": "webpack --config webpack.dev.js && webpack --config webpack.prod.js",
"dev": "webpack serve --config webpack.dev.js",
"format": "prettier --write 'src/**/*.{ts,tsx}' && prettier --write 'tests/**/*.{ts,tsx}'",
"lint": "tslint --project tsconfig.json && tslint 'tests/**/*.{ts,tsx}'",
"start": "serve ./dist",
"test": "jest --config jestconfig.json --coverage --detectOpenHandles",
"test:update": "jest --config jestconfig.json --updateSnapshot"
},
"keywords": [
"sfz",
"web",
"player",
"sampler"
],
"author": "kmturley",
"license": "CC0-1.0",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node-fetch": "^2.6.4",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"file-loader": "^6.2.0",
"glob": "^10.3.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"mini-css-extract-plugin": "^2.7.5",
"prettier": "^2.8.4",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"serve": "^14.2.0",
"stream": "^0.0.2",
"style-loader": "^3.3.1",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@sfz-tools/core": "^0.0.28",
"browser-fs-access": "^0.33.0",
"node-fetch": "^2.6.12",
"xml-js": "^1.6.11"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}