-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.24 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
{
"name": "@wlk/u-wave-random-playlists",
"version": "2.0.0",
"description": "üWave plugin adding a \"random\" mode to the waitlist, picking a random song from a random playlist instead of picking the first song from the active playlist.",
"main": "index.js",
"scripts": {
"build:server": "babel src/index.js --out-file index.js",
"build:client": "cross-env BABEL_ENV=client browserify src/manage.js -t babelify -o client.js",
"build": "npm run build:server && npm run build:client",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/welovekpop/u-wave-random-playlists.git"
},
"author": "Renée Kooi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/welovekpop/u-wave-random-playlists/issues"
},
"homepage": "https://github.com/welovekpop/u-wave-random-playlists#readme",
"dependencies": {
"micro": "^7.2.2",
"pify": "^2.3.0",
"random-integer": "^2.0.0"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.47",
"@babel/cli": "7.0.0-beta.47",
"@babel/preset-env": "7.0.0-beta.47",
"babelify": "^9.0.0",
"browserify": "^14.1.0",
"cross-env": "^3.2.4",
"unfetch": "^2.1.2"
}
}