-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 2.03 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": "github-contributions-counter",
"version": "2.1.7",
"description": "A simple Javascript API that will return the public github contributions history for a user based on a universal function",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"scripts": {
"test": "node ./test/test.ts",
"build": "rollup -c",
"lint:": "eslint src --ext .ts,.tsx",
"format": "eslint src --ext .ts,.tsx --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SammyRobensParadise/github-contributions-counter.git"
},
"keywords": [
"github",
"contributions",
"api",
"javascript"
],
"author": "Sammy Robens-Paradise",
"license": "MIT",
"bugs": {
"url": "https://github.com/SammyRobensParadise/github-contributions-counter/issues"
},
"homepage": "https://github.com/SammyRobensParadise/github-contributions-counter#readme",
"dependencies": {
"axios": "^0.21.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.1",
"@rollup/plugin-url": "^6.0.0",
"@tsconfig/recommended": "^1.0.1",
"@types/cheerio": "^0.22.24",
"@types/jsdom": "^16.2.6",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"autoprefixer": "^10.2.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"core-js": "^3.8.3",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"rollup": "^2.38.5",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-css-porter": "^1.0.2",
"rollup-plugin-node-externals": "^2.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"tslib": "^2.1.0",
"typescript": "^4.1.5"
}
}