-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
54 lines (54 loc) · 1.87 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
46
47
48
49
50
51
52
53
54
{
"name": "bootstrap-show-password-toggle",
"version": "1.4.1",
"description": "A show password as text toggle for Bootstrap",
"keywords": [
"bootstrap",
"forms",
"password"
],
"homepage": "https://github.com/coliff/bootstrap-show-password-toggle",
"bugs": {
"url": "https://github.com/coliff/bootstrap-show-password-toggle/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coliff/bootstrap-show-password-toggle.git"
},
"funding": {
"type": "PayPal",
"url": "https://paypal.me/coliff"
},
"license": "MIT",
"files": [
"css/*",
"js/*",
"LICENSE",
"package.json",
"README.md",
"scss/*"
],
"author": "Christian Oliff (https://christianoliff.com)",
"scripts": {
"build": "npm-run-all css-lint css-compile css-minify js-lint js-minify",
"css": "npm-run-all css-lint css-compile css-minify",
"css-compile": "sass --style expanded --source-map --embed-sources scss:css",
"css-lint": "stylelint \"scss/*.scss\" --fix -f verbose",
"css-minify": "cleancss -O1 --format breakWith=lf --output css/show-password-toggle.min.css css/show-password-toggle.css",
"js-lint": "eslint js/show-password-toggle.js --fix",
"js-minify": "terser --ecma 5 --keep-classnames --keep-fnames --output js/show-password-toggle.min.js -- js/show-password-toggle.js",
"pa11y": "npx pa11y https://coliff.github.io/bootstrap-show-password-toggle/tests/bootstrap5-sign-in/",
"prettier": "npx prettier --write \"**/*.{css,html,js,json,scss,yml}\"",
"serve": "npx http-server -o /tests/bootstrap5-sign-in/ -p 8080 -c-1",
"test": "npm-run-all css-lint js-lint"
},
"devDependencies": {
"clean-css-cli": "5.6.3",
"eslint": "8.57.0",
"npm-run-all": "4.1.5",
"sass": "1.77.6",
"stylelint": "16.9.0",
"stylelint-config-twbs-bootstrap": "14.2.0",
"terser": "5.31.1"
}
}