UNPKG

2.16 kBJSONView Raw
1{
2 "name": "miniplug",
3 "description": "Small plug.dj API client for bots and applications, built on Promises",
4 "version": "2.0.3",
5 "author": "Renée Kooi <renee@kooi.me>",
6 "bugs": "https://github.com/miniplug/miniplug/issues",
7 "contributors": [
8 "Burkes (https://github.com/burkes)",
9 "Cosmetify (https://github.com/cosmetify)"
10 ],
11 "dependencies": {
12 "bluebirdish": "^1.1.0",
13 "debug": "^4.0.1",
14 "node-fetch": "^2.1.2",
15 "plug-login": "^2.1.0",
16 "plug-socket": "^1.0.0"
17 },
18 "devDependencies": {
19 "@goto-bus-stop/tape-modern": "^2.0.0",
20 "async-to-gen": "^1.3.3",
21 "buble": "^0.19.0",
22 "builtin-modules": "^3.0.0",
23 "create-error-class": "^3.0.2",
24 "glob": "^7.1.3",
25 "is-async-supported": "^1.2.0",
26 "linear-promise-backoff-queue": "^1.0.0",
27 "nock": "^10.0.0",
28 "npm-run-all": "^4.1.3",
29 "plug-message-split": "^1.1.1",
30 "pre-commit": "^1.2.2",
31 "proxyquire": "^2.1.0",
32 "rollup": "^0.66.2",
33 "rollup-plugin-buble": "^0.19.0",
34 "rollup-plugin-commonjs": "^9.1.8",
35 "rollup-plugin-inject": "^2.0.0",
36 "rollup-plugin-node-resolve": "^3.4.0",
37 "standard": "^11.0.0",
38 "tap-min": "^1.2.1",
39 "with-staged": "^1.0.1"
40 },
41 "engines": {
42 "node": ">= 4"
43 },
44 "files": [
45 "index.js",
46 "index.mjs",
47 "docs"
48 ],
49 "homepage": "https://github.com/miniplug/miniplug",
50 "keywords": [
51 "plug",
52 "plug.dj",
53 "plugdj",
54 "api",
55 "bot",
56 "client",
57 "promises"
58 ],
59 "license": "MIT",
60 "main": "index.js",
61 "module": "index.mjs",
62 "pre-commit": {
63 "run": [
64 "rebuild",
65 "tap:min",
66 "lint-staged"
67 ]
68 },
69 "repository": "miniplug/miniplug",
70 "scripts": {
71 "build": "rollup -c",
72 "lint-staged": "with-staged '**/*.js' -- standard",
73 "lint": "standard rollup.config.js scripts/**/*.js src/**/*.js test/**/*.js",
74 "prepare": "npm run build",
75 "rebuild": "node scripts/has-changed || rollup -c",
76 "tap": "node test",
77 "tap:min": "npm run tap | tap-min",
78 "test": "npm-run-all lint rebuild tap:min",
79 "test:ci": "npm-run-all lint rebuild tap"
80 },
81 "standard": {
82 "env": "mocha"
83 }
84}