-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.44 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
{
"name": "nebula-css",
"version": "2.7.1",
"description": "ITCSS and BEMIT based framework that is ultra exensible and scales to any project size",
"main": "index.js",
"scripts": {
"lint": "stylelint '*/**/*.scss' --syntax scss",
"sass": "node-sass --output-style compressed --include-path ./nebula-css/ -o demo demo/scss/main.scss",
"autoprefixer": "postcss -u autoprefixer -r demo/main.css",
"build": "npm run sass && npm run autoprefixer",
"serve": "http-server demo -o",
"watch": "concurrently --kill-others \"onchange '*/**/*.scss' -- npm run build\" \"npm run serve\"",
"start": "npm run build && npm run watch",
"test": "npm run lint",
"deploy": "npm run lint && npm run build && gh-pages -d demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rbrtsmith/nebula-css.git"
},
"keywords": [
"itcss",
"bemit",
"bem",
"sass",
"oocss",
"grid"
],
"author": "Robert Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/rbrtsmith/nebula-css/issues"
},
"homepage": "https://github.com/rbrtsmith/nebula-css#readme",
"devDependencies": {
"autoprefixer": "^7.1.2",
"concurrently": "^3.5.0",
"gh-pages": "^1.0.0",
"http-server": "^0.10.0",
"node-sass": "^4.5.3",
"onchange": "^3.2.1",
"postcss-cli": "^4.1.0",
"simple-autoreload-server": "^0.2.6",
"stylelint": "^8.0.0",
"stylelint-config-nebula": "^0.2.0"
}
}