-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "@onetaiko/facebook-page-manager",
"version": "0.0.1",
"description": "An app that scrapes events from wordpress and posts them to facebook",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"prescrape": "npm run build",
"scrape": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bforbis/facebook-page-manager.git"
},
"keywords": [],
"author": {
"name": "Brian Forbis",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bforbis/facebook-page-manager/issues"
},
"homepage": "https://github.com/bforbis/facebook-page-manager#readme",
"dependencies": {
"lodash": "^4.17.10",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/lodash": "^4.14.115",
"@types/request": "^2.47.1",
"@types/request-promise": "^4.1.42",
"@types/xml2js": "^0.4.3",
"fs-extra": "^7.0.0",
"typescript": "^2.9.2"
}
}