-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.01 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": "mqp-api",
"version": "0.3.5",
"main": "src/app.js",
"keywords": [
"musiqpad",
"mqp",
"musiqpad.com",
"interface",
"websocket",
"ws",
"bot"
],
"scripts": {
"test": "nyc ava",
"test-coveralls": "nyc ava && nyc report --reporter=text-lcov | coveralls",
"build-web": "browserify ./browser.js -d -p [minifyify --no-map] > mqp-api.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/musiqpad/mqp-node-api.git"
},
"author": "musiqpad Team <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/musiqpad/mqp-node-api/issues"
},
"homepage": "https://github.com/musiqpad/mqp-node-api#readme",
"dependencies": {
"bluebird": "^3.3.4",
"sha.js": "^2.4.5",
"winston": "^2.2.0",
"ws": "^1.1.0"
},
"devDependencies": {
"minifyify": "^7.3.3",
"ava": "^0.14.0",
"browserify": "^13.0.0",
"coveralls": "^2.11.9",
"nyc": "^6.4.0"
},
"browser": {
"ws": false
}
}