-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.49 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
55
56
57
58
59
60
61
62
63
{
"name": "swapform",
"author": {
"name": "Robert Miller",
"url": "https://github.com/runthis/swapform/graphs/contributors"
},
"bugs": {
"url": "https://github.com/runthis/swapform/issues"
},
"config": {
"version_short": "1.0"
},
"contributors": [
{
"name": "Robert Miller"
}
],
"dependencies": {},
"devDependencies": {
"sass": "^1.72.0",
"google-closure-compiler": "^20240317.0.0"
},
"description": "A front-end improvement to Bootstrap forms with a Material design.",
"files": [
"dist/{css,js}/*.{css,js,map}",
"js/{src,dist}/**/*.{js,map}",
"scss/**/*.scss"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/swapform"
},
"homepage": "https://swapform.robertjessemiller.com/",
"keywords": [
"bootstrap",
"front-end",
"material",
"form",
"css",
"sass",
"web"
],
"license": "MIT",
"main": "dist/js/swapform.js",
"peerDependencies": {
"bootstrap": ">=3.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/runthis/swapform.git"
},
"sass": "scss/swapform.scss",
"scripts": {
"css-compile": "npx sass scss/swapform.scss dist/css/swapform.css --style=expanded",
"css-minify": "npx sass scss/swapform.scss dist/css/swapform.min.css --style=compressed",
"js-compile-dev": "npx google-closure-compiler --js=js/src/swapform.js --js_output_file=js/dist/swapform.js --create_source_map=js/dist/swapform.js.map --source_map_include_content --output_wrapper '%output%\n//# sourceMappingURL=swapform.js.map' --compilation_level=WHITESPACE_ONLY --formatting=PRETTY_PRINT --language_out=ES6",
"js-minify-dev": "npx google-closure-compiler --js=js/src/swapform.js --js_output_file=js/dist/swapform.min.js --create_source_map=js/dist/swapform.min.js.map --source_map_include_content --output_wrapper '%output%\n//# sourceMappingURL=swapform.js.map' --language_out=ES6",
"js-compile-prod": "npx google-closure-compiler --js=js/src/swapform.js --js_output_file=dist/js/swapform.js --create_source_map=dist/js/swapform.js.map --source_map_include_content --output_wrapper '%output%\n//# sourceMappingURL=swapform.js.map' --compilation_level=WHITESPACE_ONLY --formatting=PRETTY_PRINT --language_out=ES6",
"js-minify-prod": "npx google-closure-compiler --js=js/src/swapform.js --js_output_file=dist/js/swapform.min.js --create_source_map=dist/js/swapform.min.js.map --source_map_include_content --output_wrapper '%output%\n//# sourceMappingURL=swapform.js.map' --language_out=ES6"
},
"style": "dist/css/swapform.css",
"version": "1.1.51"
}