-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.45 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
{
"name": "slack-plays-music",
"version": "1.1.0",
"description": "A nice App that connects with slack and plays music according to channels activity",
"main": "index.js",
"scripts": {
"test": "mocha --reporter nyan",
"start": "npm run build && node server.js",
"reset": "rm -rf public && mkdir public",
"bundlejs": "node node_modules/browserify/bin/cmd.js -r ./dependencies.js > public/bundle.js",
"build": "npm run reset && cp index.html public/ && npm run bundlejs",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"engines": {
"node": ">=5.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giovanecosta/slack-plays-music.git"
},
"keywords": [
"slack",
"tonejs",
"music"
],
"author": "Giovane Tomaz <[email protected]> (https://github.com/giovanecosta)",
"license": "MIT",
"bugs": {
"url": "https://github.com/giovanecosta/slack-plays-music/issues"
},
"homepage": "https://github.com/giovanecosta/slack-plays-music#readme",
"devDependencies": {
"chai": "^4.1.2",
"chai-spies": "^0.7.1",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"sinon": "^4.0.0"
},
"dependencies": {
"@slack/client": "^3.14.0",
"browserify": "^14.4.0",
"jquery": "^3.2.1",
"node-http-server": "^8.1.2",
"tone": "^0.11.11",
"uid": "0.0.2",
"websocket": "^1.0.24"
}
}