-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.66 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.66 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
51
52
{
"name": "vframe",
"version": "0.0.2",
"description": "CSS framework by VCF",
"main": "vframe.sass",
"directories": {
"test": "test"
},
"dependencies": {
"tar": ">=3.2.3"
},
"devDependencies": {
"autoprefixer": "^9.8.0",
"clean-css-cli": "^4.3.0",
"node-sass": "^4.14.1",
"rimraf": "^3.0.2",
"postcss": "^8.3.0"
},
"scripts": {
"build": "npm run build-sass && npm run build-autoprefix && npm run build-cleancss",
"build-autoprefix": "postcss --use autoprefixer --map false --output css/bulma.css css/bulma.css",
"build-cleancss": "cleancss -o css/bulma.min.css css/bulma.css",
"build-sass": "node-sass --output-style expanded --source-map true vframe.sass css/vframe.css",
"clean": "rimraf css",
"deploy": "npm run clean && npm run build && npm run rtl",
"rtl": "npm run rtl-sass && npm run rtl-autoprefix && npm run rtl-cleancss",
"rtl-autoprefix": "postcss --use autoprefixer --map false --output css/bulma-rtl.css css/bulma-rtl.css",
"rtl-cleancss": "cleancss -o css/bulma-rtl.min.css css/bulma-rtl.css",
"rtl-sass": "node-sass --output-style expanded --source-map true bulma-rtl.sass css/bulma-rtl.css",
"start": "npm run build-sass -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VCF-Small/VFrame.git"
},
"keywords": [
"vframe",
"vcf-framework",
"advance css framework",
"css",
"framework",
"css-framework",
"sass-famework",
"vcf"
],
"author": "Himanshu Jangid",
"license": "MIT",
"bugs": {
"url": "https://github.com/VCF-Small/VFrame/issues"
},
"homepage": "https://github.com/VCF-Small/VFrame#readme"
}