-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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": "MFCAuto",
"version": "5.11.4",
"description": "A module for interacting with MyFreeCams chat servers.",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"load": "^1.0.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"request": "^2.88.2",
"request-promise-native": "^1.0.5",
"ws": "^7.5.10",
"xmlhttprequest": "^1.8.0"
},
"optionalDependencies": {
"phantomjs-prebuilt": "^2.1.16"
},
"devDependencies": {
"@types/cheerio": "^0.22.7",
"@types/lodash": "^4.14.122",
"@types/node": "^9.6.6",
"@types/request-promise-native": "^1.0.14",
"@types/ws": "^5.1.0",
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"tslint": "^5.9.1",
"typescript": "^2.8.3"
},
"engines": {
"node": ">=9.4.0"
},
"scripts": {
"test": "mocha src/test/test.js",
"testfast": "mocha src/test/test.js -g \"^(?!.*{slow})\"",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha src/test/test.js",
"lint": "tslint --project tsconfig.json",
"prebuild": "tslint --project tsconfig.json",
"build": "tsc"
},
"repository": {
"type": "git",
"url": ""
},
"author": "ZombieAlex",
"license": "MIT"
}