-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "trending-github",
"version": "2.0.7",
"description": "Simple API for getting trending repositories on GitHub",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register test/tests.ts && npm run eslint",
"eslint": "node_modules/.bin/eslint src/ test/ --fix --ext .ts",
"build": "rm -rf dist && tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/ecrmnn/trending-github"
},
"keywords": [],
"author": {
"name": "Daniel Eckermann",
"email": "danieleckermann@gmail.com",
"url": "http://danieleckermann.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ecrmnn/trending-github/issues"
},
"homepage": "https://github.com/ecrmnn/trending-github",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/cheerio": "^0.22.10",
"@types/mocha": "^5.2.6",
"@typescript-eslint/parser": "^1.3.0",
"chai": "^4.1.2",
"collect.js": "^4.0.18",
"eslint": "^5.14.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^5.2",
"ts-node": "^8.2.0",
"typescript": "^3.5.2"
},
"dependencies": {
"axios": "~0.18.0",
"cheerio": "~1.0.0-rc.2"
}
}