-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathpackage.json
60 lines (60 loc) · 1.89 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
{
"name": "github-trending-repos",
"version": "0.1.0",
"description": "Be aware of new trending repos on GitHub",
"author": {
"name": "Vitaliy Potapov",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/vitalets/github-trending-repos.git"
},
"scripts": {
"code": "eslint .",
"test-trends": "mocha test/specs/trends.test.js -r test/setup.js",
"test-issues": "mocha test/specs/issues.test.js -r test/setup.js",
"test-comments": "mocha test/specs/comments.test.js -r test/setup.js",
"test-translator": "mocha test/specs/translator.test.js -r test/setup.js",
"test-helpers": "mocha test/specs/*.test.js -r test/setup.js",
"test-daily": "TRENDING_LABEL=trending-daily TRENDING_LANG=javascript node scripts/update-issues",
"test-weekly": "TRENDING_LABEL=trending-weekly TRENDING_LANG=javascript node scripts/update-issues",
"test-clean": "TRENDING_LABEL=trending-daily TRENDING_LANG=javascript node scripts/clean-issues",
"test-all": "npm run test-helpers && npm run test-daily && npm run test-weekly && npm run test-clean"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run code"
}
},
"lint-staged": {
"*.js": "eslint"
},
"dependencies": {
"@vitalets/google-translate-api": "^9.0.0-1",
"await-timeout": "^1.1.1",
"axios": "^0.20.0",
"axios-retry": "^3.1.8",
"cheerio": "^1.0.0-rc.2",
"emoji-regex": "^9.0.0",
"fs-extra": "^9.0.1",
"ip": "^1.1.5",
"ms": "^2.1.2",
"parse-link-header": "^1.0.1",
"promise-retry": "^2.0.1",
"ramda": "^0.27.1",
"throw-utils": "^2.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.8.1",
"husky": "^4.2.5",
"lint-staged": "^10.3.0",
"markdown-magic": "^2.6.1",
"mocha": "^8.1.3",
"sinon": "^14.0.1"
},
"license": "MIT"
}