-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.54 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.54 KB
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": "numix-ui",
"version": "0.1.0-alpha",
"description": "A lightweight, themeable CSS and JavaScript UI library inspired by Numix design principles. [](https://www.gnu.org/licenses/gpl-3.0)",
"main": "index.js",
"scripts": {
"minify:css": "csso css/numix-ui.css -o css/numix-ui.min.css",
"minify:js": "uglifyjs js/numix-ui.js -o js/numix-ui.min.js --compress --mangle",
"minify": "npm run minify:css && npm run minify:js",
"build": "npm run minify",
"serve": "npx http-server -p 8080 -c-1 .",
"open": "start http://localhost:8080",
"dev": "npm run build && npm run serve && npm run open",
"start": "echo 'Open index.html manually or serve it using a local server.'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/numix-ui/numix-ui.github.io.git"
},
"keywords": [
"ui",
"css",
"javascript",
"library",
"lightweight",
"theme",
"vanilla-js",
"numix",
"numix ui",
"numix design",
"numix icons",
"numix icon theme",
"numix circle",
"numix circle icons",
"numix circle icon theme",
"numix theme",
"design-system"
],
"author": "LoboGuardian",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/numix-ui/numix-ui.github.io/issues"
},
"homepage": "https://github.com/numix-ui/numix-ui.github.io#readme",
"devDependencies": {
"csso-cli": "^4.0.2",
"uglify-js": "^3.19.3"
}
}