-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.87 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "plugging-you-in",
"version": "0.0.3",
"description": "An OOP-based client for plug.dj",
"license": "MIT",
"main": "lib/Client.js",
"author": "Fuechschen <johannes@diehl.io> (https://diehl.io)",
"repository": {
"type": "git",
"url": "git+https://github.com/Fuechschen/plugging-you-in.git"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"plug",
"plug.dj",
"music",
"api",
"bot"
],
"dependencies": {
"bluebird": "^3.4.7",
"rolling-rate-limiter": "^0.1.4",
"superagent": "^3.4.1",
"ws": "^2.0.2"
},
"scripts": {
"docs": "npm run docs:md && npm run docs:html",
"docs:md": "jsdoc2md \"lib/**/*.js\" > api.md",
"docs:html": "jsdoc -r -c jsdoc.conf.json",
"test": "eslint \"**/*.js\" && echo \"\u001b[1m\u001b[32mOK\u001b[39m\u001b[22m\" || echo \"\u001b[1m\u001b[31mNot OK\u001b[39m\u001b[22m\""
},
"devDependencies": {
"eslint": "^3.15.0",
"jsdoc": "^3.4.3",
"jsdoc-to-markdown": "^2.0.1"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6
},
"extends": "eslint:recommended",
"rules": {
"semi": [
2,
"always",
{
"omitLastInOneLineBlock": true
}
],
"no-unused-vars": [
2,
{
"argsIgnorePattern": "^_",
"caughtErrors": "none"
}
],
"no-control-regex": 0,
"global-require": 1,
"camelcase": 1,
"dot-notation": 1,
"no-else-return": 2,
"no-plusplus": 2,
"constructor-super": 2,
"prefer-arrow-callback": 1,
"object-shorthand": 2,
"object-curly-spacing": 1,
"object-property-newline": [
1,
{
"allowMultiplePropertiesPerLine": true
}
],
"no-var": 2,
"no-inner-declarations": 0
}
}
}