forked from paulallen87/chaturbate-socket-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.4 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
{
"name": "@paulallen87/chaturbate-socket-server",
"version": "1.0.17",
"description": "A socket server for publishing events from a Chaturbate profile.",
"main": "index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "node_modules/.bin/eslint . --ext js --ignore-path .gitignore",
"lint:fix": "node_modules/.bin/eslint --fix . --ext js --ignore-path .gitignore",
"test": "node_modules/.bin/mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulallen87/chaturbate-socket-server.git"
},
"keywords": [
"chaturbate"
],
"author": "“Paul Allen <“paul.allen.87.555@gmail.com”>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/paulallen87/chaturbate-socket-server/issues"
},
"homepage": "https://github.com/paulallen87/chaturbate-socket-server#readme",
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^2.13.1",
"eslint": "^4.1.1",
"eslint-config-google": "^0.8.0",
"eslint-plugin-jsdoc": "^3.1.1",
"eslint-plugin-node": "^5.1.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.4.2"
},
"dependencies": {
"@paulallen87/chaturbate-browser": "^1.1.10",
"@paulallen87/chaturbate-controller": "^1.0.11",
"debug": "^2.6.8",
"socket.io": "^2.0.3"
}
}