This repository was archived by the owner on Oct 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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": "luxbar",
"version": "0.3.2",
"description": "Featherweight, Responsive, CSS Only Navigation Bar",
"scripts": {
"build": "node-sass scss -o build && postcss --use autoprefixer build/**/*.css -r && cssnano ./build/luxbar.css > ./build/luxbar.min.css",
"postbuild": "copy \"./build/\" \"./\"",
"lint": "sass-lint -c ./scsslint.yml -v -q"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balzss/luxbar.git"
},
"keywords": [
"CSS",
"Navbar",
"Menu",
"Navigation bar"
],
"author": "balzss",
"license": "MIT",
"bugs": {
"url": "https://github.com/balzss/luxbar/issues"
},
"files": [
"build/",
"scss/",
"README.md",
"LICENSE"
],
"homepage": "https://balzss.github.io/luxbar",
"devDependencies": {
"node-sass": "^4.4.0",
"autoprefixer": "^6.6.1",
"postcss-cli": "^2.6.0",
"sass-lint": "^1.10.2",
"cssnano-cli": "^1.0.5",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-es2015-destructuring": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"webpack": "^2.2.1"
}
}