forked from coliff/bootstrap-show-password-toggle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.78 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
{
"name": "@slackero/bootstrap-show-password-toggle",
"version": "1.3.3",
"description": "A show password as text toggle for Bootstrap",
"keywords": [
"bootstrap",
"forms",
"password"
],
"homepage": "https://github.com/slackero/bootstrap-show-password-toggle",
"bugs": {
"url": "https://github.com/slackero/bootstrap-show-password-toggle/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slackero/bootstrap-show-password-toggle.git"
},
"license": "MIT",
"files": [
"css/*",
"js/*",
"LICENSE",
"package.json",
"README.md",
"scss/*"
],
"author": "Christian Oliff (https://christianoliff.com)",
"contributors": [
"Oliver Georgi <[email protected]> (https://github.com/slackero/)"
],
"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 --embed-sources scss:css",
"css-lint": "stylelint \"scss/*.scss\"",
"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 js/show-password-toggle-jquery.js",
"js-minify": "terser --ecma 5 --keep-classnames --keep-fnames --output js/show-password-toggle.min.js -- js/show-password-toggle.js && terser --ecma 5 --keep-classnames --keep-fnames --output js/show-password-toggle-jquery.min.js -- js/show-password-toggle-jquery.js",
"test": "npm-run-all css-lint js-lint"
},
"devDependencies": {
"clean-css-cli": "^5.4.2",
"eslint": "^8.1.0",
"npm-run-all": "^4.1.5",
"sass": "^1.43.4",
"stylelint": "13.13.1",
"stylelint-config-twbs-bootstrap": "2.2.4",
"terser": "^5.9.0"
}
}