-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 900 Bytes
/
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
{
"name": "gh-profile-card",
"version": "0.1.0",
"main": "dist/github-widget.cjs.js",
"module": "dist/github-widget.esm.mjs",
"browser": "dist/github-widget.umd.js",
"license": "MIT",
"devDependencies": {
"rollup": "^1.20.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.1.0",
"rollup-plugin-terser": "^5.1.2"
},
"files": [
"dist",
"README.md",
"package.json",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"clean": "rimraf dist",
"pretest": "npm run build",
"pretty": "prettier --write \"./src/*.{js,json}\""
},
"keywords": [
"profile",
"github-profile",
"github-card"
],
"repository": {
"type": "git",
"url": "git+https://github.com/binodswain/gh-profile.git"
},
"author": "“Binod <[email protected]> ([email protected])"
}