-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.81 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
{
"name": "@sfz-tools/core",
"version": "0.0.28",
"description": "Core library containing shared functionality",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf ./dist && tsc && npm run copy",
"copy": "copyfiles -u 1 ./src/lib/* ./dist",
"dev": "npm run build && node index.js",
"format": "prettier --write 'src/**/*.{ts,tsx}' && prettier --write 'tests/**/*.{ts,tsx}'",
"lint": "tslint --project tsconfig.json && tslint 'tests/**/*.{ts,tsx}'",
"prepare": "npm run build",
"test": "npm run build && jest --config jestconfig.json --coverage --detectOpenHandles",
"test:update": "npm run build && jest --config jestconfig.json --updateSnapshot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kmturley/sfz-tools-core.git"
},
"keywords": [
"sfz",
"tools",
"library",
"core",
"package"
],
"author": "kmturley",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/kmturley/sfz-tools-core/issues"
},
"homepage": "https://github.com/kmturley/sfz-tools-core#readme",
"dependencies": {
"@types/fs-extra": "^11.0.2",
"essentia.js": "^0.1.3",
"ffmpeg-static": "^5.2.0",
"fs-extra": "^11.1.1",
"glob": "^10.3.6",
"js-yaml": "^4.1.0",
"node-fetch": "^2.6.1",
"node-wav": "^0.0.2",
"nodejs-fs-utils": "^1.2.6",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/js-yaml": "^4.0.9",
"@types/node": "^14.14.7",
"@types/node-fetch": "^2.5.7",
"@types/node-wav": "^0.0.0",
"copyfiles": "^2.4.1",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5"
}
}