yet-another-github-card 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +46 -0
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "yet-another-github-card",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Yet another github card profile for use it on your social-networks, blogs or portfolio.",
|
|
5
|
+
"main": "dist/yagc.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"module": "dist/yagc.js",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"lint": "eslint .",
|
|
13
|
+
"build": "rollup -c",
|
|
14
|
+
"test": "jest",
|
|
15
|
+
"build-watch": "npm run build --watch",
|
|
16
|
+
"build-demo": "npm run compile-demo && npm run server-watch",
|
|
17
|
+
"compile-demo": "rollup -c rollup-demo.config.js",
|
|
18
|
+
"server-watch": "NODE_OPTIONS='--trace-deprecation' http-server -c-1 ./demo -o /",
|
|
19
|
+
"docs": "NODE_OPTIONS='--trace-deprecation' http-server -c-1 ./docs -o /"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"github",
|
|
23
|
+
"card",
|
|
24
|
+
"profile",
|
|
25
|
+
"css3",
|
|
26
|
+
"html5",
|
|
27
|
+
"developer"
|
|
28
|
+
],
|
|
29
|
+
"author": "Carles Loriente",
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@babel/core": "^7.24.5",
|
|
33
|
+
"@babel/preset-env": "^7.24.5",
|
|
34
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
35
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
36
|
+
"babel-jest": "^29.7.0",
|
|
37
|
+
"eslint": "^9.1.1",
|
|
38
|
+
"http-server": "^14.1.1",
|
|
39
|
+
"jest": "^29.7.0",
|
|
40
|
+
"rollup": "^4.17.2",
|
|
41
|
+
"rollup-plugin-copy": "^3.5.0"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"countup.js": "^2.8.0"
|
|
45
|
+
}
|
|
46
|
+
}
|