-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 KB
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
{
"name": "js-count",
"title": "JavaScript Character Counter",
"description": "Simple and lightweight Javascript character counter for input elements with no dependencies",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Robert Velickovski",
"email": "roby@rvdizajn.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robiveli/js-count.git"
},
"main": "dist/index.module.js",
"keywords": [
"counter",
"character-counter",
"vanilla-js",
"vanilla-javascript",
"simple",
"dependency-free",
"lightweight",
"javascript",
"utility"
],
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@rollup/plugin-babel": "^6.0.4",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^3.0.0",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"dev": "npx rollup -c -w",
"build": "npx rollup -c"
}
}