-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.04 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.04 KB
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
{
"name": "@reactify/3dti-toolkit",
"version": "0.7.5",
"description": "JavaScript port of the 3D Tune-In Toolkit",
"main": "build/3dti-toolkit.js",
"files": [
"assets",
"build",
"lib",
"src"
],
"scripts": {
"lint": "eslint src",
"clean": "rimraf \"build/*\" \"lib/**/*.js\" \"!**/.gitkeep\"",
"build": "concurrently -n production,debug -c yellow,magenta \"node compile.js\" \"node compile.js --debug\"",
"transpile": "concurrently -n hrir,hrtf,proxy -c yellow,magenta,blue \"npm:transpile:hrir\" \"npm:transpile:hrtf\" \"npm:transpile:proxy\"",
"transpile:hrir": "rollup -c rollup.config.js -i babelify/binaural/hrir.js -o lib/binaural/hrir.js",
"transpile:hrtf": "rollup -c rollup.config.js -i babelify/binaural/hrtf.js -o lib/binaural/hrtf.js",
"transpile:proxy": "rollup -c rollup.config.js -i babelify/binaural/proxy.js -o lib/binaural/proxy.js",
"babelify": "babel --presets @babel/preset-env --out-dir babelify src",
"prep-release": "npm run clean && npm run build && npm run babelify && npm run transpile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3DTune-In/3dti_AudioToolkit_JavaScript.git"
},
"author": "Reactify <developer@reactifymusic.com> (http://reactifymusic.com)",
"contributors": [
"Alexander Wallin <office@alexanderwallin.com> (http://alexanderwallin.com)"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/3DTune-In/3dti_AudioToolkit_JavaScript/issues"
},
"homepage": "https://github.com/3DTune-In/3dti_AudioToolkit_JavaScript#readme",
"dependencies": {
"audio-param-shim": "^1.0.4",
"custom-audio-node-connect": "^1.0.1",
"lodash": "^4.17.10"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"concurrently": "^3.6.0",
"cross-spawn": "^5.1.0",
"eslint": "^3.12.0",
"eslint-config-alexander": "^1.2.0",
"globby": "^7.1.1",
"prettier": "^1.9.0",
"rimraf": "^2.5.4",
"rollup": "^0.58.1",
"yargs": "^10.0.3"
}
}