-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 829 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
{
"name": "last-icon",
"version": "2.2.0",
"description": "One custom icon element to rule them all",
"main": "last-icon.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "esbuild --bundle --minify --format=iife last-icon.js --outfile=last-icon.min.js",
"build-min": "npm run build && git add -A && git commit -m \"build files\"",
"start": "npm run build -- --servedir=.",
"watch": "npm run build -- --watch",
"bump": "npm run build-min && npm version patch",
"jsdoc": "npx jsdoc-to-markdown last-icon.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lekoala/last-icon"
},
"keywords": [
"DOM",
"icons",
"icon",
"custom",
"element",
"component",
"es6"
],
"author": "LeKoala",
"license": "MIT"
}