-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
45 lines (45 loc) · 1.41 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
{
"name": "bootstrap-show-password",
"version": "1.3.0",
"type": "module",
"description": "Show/hide password plugin for twitter bootstrap.",
"main": "dist/bootstrap-show-password.min.js",
"module": "dist/bootstrap-show-password.esm.min.js",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"eslint": "^8.56.0",
"headr": "^0.0.4",
"npm-run-all": "^4.1.5",
"rollup": "^4.12.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"lint": "eslint src",
"build:base": "rollup -c",
"build:min": "NODE_ENV=production rollup -c",
"build:banner": "find dist -name '*.min.js' -exec headr {} -o {} --version --homepage --author --license \\;",
"build": "run-s build:*",
"docs": "bundle exec jekyll build",
"docs-serve": "bundle exec jekyll serve"
},
"author": "zhixin wen <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/wenzhixin/bootstrap-show-password.git"
},
"keywords": [
"bootstrap",
"password"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/wenzhixin/bootstrap-show-password/issues"
},
"homepage": "https://github.com/wenzhixin/bootstrap-show-password"
}