-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "soundplayer-widget",
"version": "0.4.2",
"description": "Lightweight embedded SoundCloud player widgets",
"main": "index.js",
"style": "cssnext/index.css",
"directories": {
"example": "example"
},
"scripts": {
"build-css": "cssnext cssnext/index.css dist/soundplayer-widget.min.css -c",
"build-js": "babel src/Player.js -o lib/Player.js --stage 0",
"build-widget": "NODE_ENV=production webpack --config webpack.config.js --progress --colors -p",
"build": "npm run build-css && npm run build-js && npm run build-widget",
"watch": "webpack --config webpack.config.js --progress --colors --watch",
"start": "npm run watch",
"prepublish": "npm run build"
},
"keywords": [
"soundcloud",
"widget",
"player",
"embed",
"react",
"deku",
"functional",
"component"
],
"author": "Dmitri Voronianski <[email protected]>",
"license": "MIT",
"dependencies": {
"deku": "^1.0.0",
"deku-soundplayer": "^0.4.3",
"magic-virtual-element": "^1.0.6",
"soundcloud-audio": "^0.1.4"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"css-loader": "^0.14.4",
"cssnext": "^1.4.0",
"cssnext-loader": "^1.0.1",
"envify": "^3.4.0",
"node-libs-browser": "^0.5.2",
"style-loader": "^0.12.3",
"transform-loader": "^0.2.2",
"uglify-js": "^2.4.23",
"webpack": "^1.9.10"
}
}