-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "dark-mode-switch",
"version": "1.0.1",
"description": "Dark-mode theme switch for Bootstrap with local storage preference",
"keywords": [
"bootstrap",
"dark-mode"
],
"homepage": "https://github.com/coliff/dark-mode-switch",
"bugs": {
"url": "https://github.com/coliff/dark-mode-switch/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coliff/dark-mode-switch.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/coliff"
},
"license": "MIT",
"author": "Christian Oliff (https://christianoliff.com)",
"main": "dark-mode-switch.min.js",
"scripts": {
"build": "npm run prettier && npm run test && npm run minify",
"minify": "terser --ecma 5 --keep-classnames --keep-fnames --output dark-mode-switch.min.js -- dark-mode-switch.js",
"prettier": "prettier --write dark-mode-switch.js",
"test": "eslint dark-mode-switch.js"
},
"files": [
"dark-mode-switch.js",
"dark-mode-switch.min.js",
"dark-mode-switch.css",
"LICENSE",
"package.json",
"README.md"
],
"devDependencies": {
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"terser": "^5.19.4"
}
}