This repository has been archived by the owner on Jun 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.82 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
{
"name": "best-scheduled-tweets",
"version": "2.0.1",
"description": "An opinionated library to extract the best links from scheduled tweets from a given Twitter account using Hootsuite and Facebook",
"repository": {
"type": "git",
"url": "[email protected]:FullStackBulletin/best-scheduled-tweets.git"
},
"main": "lib/index.js",
"scripts": {
"start": "source .env && babel-node src/cli",
"test:lint": "eslint src/**.js test/**.test.js",
"test:unit": "nyc ava --verbose test/**.test.js",
"test": "npm run test:lint && npm run test:unit",
"build": "rm -rf lib && NODE_ENV=production webpack && chmod +x lib/cli.js"
},
"bin": {
"best-scheduled-tweets": "lib/cli.js"
},
"author": "Luciano Mammino",
"license": "MIT",
"engines": {
"node": ">=8"
},
"dependencies": {
"async": "^3.1.0",
"debug": "^4.1.1",
"fb": "^1.1.1",
"meta-extractor": "^1.5.1",
"moment": "^2.24.0",
"normalize-url": "^4.3.0",
"object-path": "^0.11.3",
"object-values": "^2.0.0",
"request": "^2.88.0",
"twitter": "^1.7.0"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/register": "^7.4.4",
"ava": "^2.2.0",
"babel-loader": "^8.0.6",
"codecov": "^3.5.0",
"core-js": "^3.1.4",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-standard": "^4.0.0",
"nyc": "^14.1.1",
"sinon": "^7.3.2",
"tap-xunit": "^2.4.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5"
},
"ava": {
"require": "@babel/register"
}
}