-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.66 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.66 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@generative-music/samples-alex-bainter",
"version": "2.5.0",
"description": "Audio sample files used in Alex Bainter's projects",
"main": "src/index.js",
"files": [
"dist/mp3.json",
"dist/ogg.json",
"dist/wav.json",
"src/*.js",
"bin",
"lib"
],
"scripts": {
"test": "mocha",
"test:watch": "mocha -w",
"lint": "eslint .",
"clean:formatted": "rm -rf ./dist",
"clean:prerendered": "rm -rf ./prerenderd-samples",
"clean:all": "npm run clean:formatted && npm run clean:prerendered",
"format": "node ./scripts/format/format.js",
"format:clean": "npm run clean:formatted && npm run format",
"pull": "node -r dotenv/config node_modules/.bin/s3-sync pull --mutables index.json wav.json mp3.json ogg.json",
"pull:dry-run": "npm run pull -- --dryRun",
"deploy": "node -r dotenv/config node_modules/.bin/s3-sync deploy --mutables index.json wav.json mp3.json ogg.json --compressExtensions json,wav",
"deploy:dry-run": "npm run deploy -- --dryRun",
"postversion": "git push && git push --tags",
"preversion": "npm run lint && npm run test",
"serve": "docker-compose up",
"serve:proxy": "node bin/serve.js",
"prerender": "electron scripts/prerender/main.js",
"build": "npm run prerender && npm run format",
"prune:local": "node ./scripts/prune/prune.js",
"prune:remote": "node -r dotenv/config node_modules/.bin/s3-sync prune remote --mutables index.json wav.json mp3.json ogg.json",
"prune:remote:dry-run": "npm run prune:remote -- --dryRun",
"diff": "node -r dotenv/config node_modules/.bin/s3-sync diff"
},
"repository": {
"type": "git",
"url": "git+https://github.com/generative-music/samples-alex-bainter.git"
},
"author": "Alex Bainter <alex@alexbainter.com> (https://alexbainter.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/generative-music/samples-alex-bainter/issues"
},
"homepage": "https://github.com/generative-music/samples-alex-bainter#readme",
"devDependencies": {
"@alexbainter/eslint-config": "^0.1.2",
"@alexbainter/s3-sync": "^0.6.0",
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"@generative-music/pieces-alex-bainter": "^5.2.1",
"audiobuffer-to-wav": "^1.0.0",
"chai": "^4.2.0",
"cli-progress": "^3.6.0",
"concat-stream": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"electron": "^10.1.3",
"eslint": "^6.8.0",
"fluent-ffmpeg": "^2.1.2",
"glob": "^7.1.6",
"md5": "^2.2.1",
"mocha": "^8.1.3",
"prettier": "^1.19.1",
"proxyquire": "^2.1.3",
"tone": "^14.7.58"
},
"dependencies": {
"aws-sdk": "^2.863.0",
"express": "^4.17.1",
"mime": "^2.5.2"
}
}