-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "soundcloud-audio",
"version": "1.4.0",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/voronianski/soundcloud-audio.js.git"
},
"keywords": [
"soundcloud",
"html5",
"browser",
"audio",
"playlists",
"tracks",
"api",
"waveform",
"sdk"
],
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --ignore-path ./public"
}
},
"author": "Dmitri Voronianski <dmitri.voronianski@gmail.com>",
"license": "MIT",
"devDependencies": {
"browserify": "^16.1.0",
"chai": "^4.1.2",
"husky": "^1.2.0",
"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",
"prettier": "^1.15.2",
"pretty-quick": "^1.8.0",
"uglify-js": "^3.3.12",
"watchify": "^3.10.0"
},
"dependencies": {}
}