forked from hydra-synth/hydra-synth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·67 lines (67 loc) · 1.63 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
66
67
{
"name": "hydra-synth",
"version": "1.3.19",
"description": "base synth for hydra-editor",
"main": "index.js",
"scripts": {
"test": "mocha",
"dev-ssl": "budo ./dev/index.js --ssl --open --live --port 8000 --",
"dev": "budo ./dev/index.js --open --live --port 8000 --",
"build-hydra": "browserify hydra-synth.js --standalone Hydra > dist/hydra-synth.js",
"build-shader-generator": "browserify shader-generator.js --standalone HydraShaders > dist/hydra-shaders.js",
"build": "npm run build-hydra",
"coverage": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ojack/hydra-synth.git"
},
"keywords": [
"webgl",
"regl",
"graphics",
"livecoding",
"synth"
],
"unpkg": "dist/hydra-synth.js",
"author": "ojack",
"license": "AGPL",
"bugs": {
"url": "https://github.com/ojack/hydra-synth/issues"
},
"homepage": "https://github.com/ojack/hydra-synth#readme",
"dependencies": {
"meyda": "^5.5.1",
"raf-loop": "^1.1.3",
"regl": "^1.3.9",
"web-audio-analyser": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"codemirror": "^5.36.0",
"gl": "^4.4.0",
"glslify": "^6.3.1",
"jsdom": "^15.2.0",
"mocha": "^6.2.1",
"mock-require": "^3.0.3",
"nyc": "^14.1.1",
"rewire": "^4.0.1",
"rtc-patch-bay": "^1.0.0",
"sinon": "^7.5.0"
},
"nyc": {
"include": [
"src/**/*.js",
"index.js"
],
"reporter": [
"text",
"html"
],
"cache": false
}
}