forked from soundcloud/soundcloud-javascript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "soundcloud",
"version": "3.3.2",
"description": "",
"main": "sdk.js",
"repository": {
"type": "git",
"url": "https://github.com/soundcloud/soundcloud-javascript.git"
},
"scripts": {
"test": "webpack && karma start --single-run",
"build": "webpack -p",
"buildPlayback": "cd ./vendor/playback && webpack --config webpack.config.js",
"start": "IS_NPM=1 webpack-dev-server",
"serve": "node ./serve.js"
},
"author": "SoundCloud Ltd.",
"license": "MIT",
"devDependencies": {
"babel-core": "^5.6.15",
"babel-loader": "^5.3.0",
"chai": "^3.2.0",
"eslint": "^1.0.0-rc-1",
"karma": "^0.13.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-safari-launcher": "^0.1.1",
"karma-sinon": "^1.0.4",
"mocha": "^2.2.5",
"node-libs-browser": "^0.5.2",
"sinon": "^1.15.4",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1",
"worker-loader": "^0.6.0"
},
"dependencies": {
"backbone-events-standalone": "^0.2.7",
"es6-promise": "^2.3.0",
"form-urlencoded": "^0.1.4",
"node-static": "^0.7.7",
"query-string": "^2.3.0"
}
}