forked from voronianski/soundcloud-audio.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "soundcloud-audio",
"version": "1.3.1",
"description": "Play SoundCloud tracks and playslists in modern browsers with HTML5 Audio API",
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"start": "watchify . -s SoundCloudAudio -o dist/soundcloud-audio.js -v -d",
"build": "browserify . -s SoundCloudAudio | uglifyjs -cm > dist/soundcloud-audio.min.js",
"test": "./node_modules/karma/bin/karma start --single-run --browsers Chrome",
"test:watch": "./node_modules/karma/bin/karma start --auto-watch --browsers Chrome",
"lint": "eslint ./index.js --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/voronianski/soundcloud-audio.js.git"
},
"keywords": [
"soundcloud",
"html5",
"browser",
"audio",
"playlists",
"tracks",
"api",
"waveform",
"sdk"
],
"author": "Dmitri Voronianski <dmitri.voronianski@gmail.com>",
"license": "MIT",
"devDependencies": {
"browserify": "^16.1.0",
"chai": "^4.1.2",
"eslint": "^4.18.2",
"jasmine-core": "^3.1.0",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"mocha": "^5.0.1",
"uglify-js": "^3.3.12",
"watchify": "^3.10.0"
},
"dependencies": {}
}