-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "@rocktimsaikia/github-card",
"version": "3.0.1",
"description": "A minimal github card widget for your portfolio.",
"main": "dist/index.js",
"type": "module",
"module": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint .",
"build": "rollup -c",
"build-watch": "npm run build --watch",
"prebuild": "del-cli dist && npm run lint",
"prepublishOnly": "npm run lint && npm run build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocktimSaikia/github-card.git"
},
"keywords": [
"github",
"card",
"profile",
"embedded"
],
"author": {
"name": "Rocktim Saikia",
"email": "rocktimthedev@gmail.com",
"url": "https://rocktimcodes.site"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/RocktimSaikia/github-card/issues"
},
"homepage": "https://github.com/RocktimSaikia/github-card#readme",
"devDependencies": {
"del-cli": "^3.0.1",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"rollup": "^2.45.2",
"rollup-plugin-uglify": "^6.0.4"
}
}