-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
75 lines (75 loc) · 1.91 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
{
"author": {
"name": "Makepad Developers",
"email": "[email protected]",
"url": "https://makepad.fr"
},
"bundleDependencies": [],
"contributors": [
{
"name": "İdil Sağlam",
"email": "[email protected]",
"url": "https://idilsaglam.com"
},
{
"name": "Kaan Yağcı",
"email": "[email protected]",
"url": "https://kaanyagci.com"
}
],
"dependencies": {
"puppeteer": "^9.1.1",
"winston": "^3.3.3"
},
"description": "A NodeJS module for Facebook automation",
"keywords": [
"TypeScript",
"Facebook bot library",
"automation",
"puppeteer",
"NodeJS",
"Facebook",
"automation",
"library",
"module"
],
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"name": "@makepad/fbjs",
"scripts": {
"prepublish": "npm run lint && npm run compile",
"compile": "node_modules/.bin/tsc",
"prestart": "npm run compile",
"start": "node ./dist/index.js",
"test": "node_modules/.bin/jasmine",
"lint": "node_modules/.bin/eslint . --ext .ts,.tsx --fix",
"all-contributors": "node_modules/.bin/all-contributors"
},
"funding": {
"type": "github-sponsors",
"url": "https://github.com/sponsors/Makepad-fr"
},
"types": "dist/index.d.ts",
"version": "4.1.1",
"devDependencies": {
"@types/puppeteer": "^5.4.3",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"jasmine": "^3.5.0",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/Makepad-fr/fbjs.git"
},
"bugs": {
"url": "https://github.com/Makepad-fr/fbjs/issues",
"email": "[email protected]"
}
}