-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 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
45
46
47
48
49
50
51
52
{
"name": "web-scrap-facebook-post",
"version": "1.0.2",
"description": "Scrapping lithuanian names of the day, jokes and posting them to facebook",
"main": "server.js",
"author": "Tautvydas Derzinskas",
"repository": "https://github.com/SlimDogs/web-scrap-facebook-post.git",
"scripts": {
"start": "node server.js --env=PROD",
"dev": "node server.js --env=DEV",
"post:info": "node post.js --type=INFO --env=PROD",
"post:namesday": "node post.js --type=NAMESDAY --env=PROD",
"post:joke": "node post.js --type=JOKE --env=PROD",
"test": "./node_modules/.bin/mocha app/**/*.spec.js",
"codecov": "istanbul cover ./node_modules/mocha/bin/_mocha app/**/*.spec.js --report lcovonly -- -R spec",
"lint": "standard"
},
"dependencies": {
"cheerio": "1.0.0-rc.3",
"dotenv": "8.2.0",
"iconv-lite": "0.5.1",
"jimp": "0.9.3",
"moment-timezone": "0.5.27",
"request": "2.88.0",
"yargs": "15.0.2"
},
"devDependencies": {
"cz-conventional-changelog": "3.0.2",
"mocha": "7.0.1",
"mock-require": "3.0.3",
"standard": "14.3.1",
"unit.js": "2.1.1"
},
"standard": {
"globals": [
"request",
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}