This repository has been archived by the owner on Nov 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.81 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@gridonic/sass",
"version": "1.5.0",
"description": "Our Sass foundation.",
"main": "./src/styles.scss",
"config": {
"src": "./src",
"dest": "./build"
},
"scripts": {
"build": "npm run compile -- --source-comments --source-map-contents --source-map-embed",
"build:prod": "npm run compile -- --output-style compressed",
"clean": "rimraf $npm_package_config_dest",
"compile": "node-sass $npm_package_config_src -o $npm_package_config_dest --importer ./lib/importer.js",
"docs": "sassdoc $npm_package_config_src -d ./docs -v",
"postbuild": "npm run postcss",
"postbuild:prod": "npm run postcss -- -e prod",
"postcss": "postcss $npm_package_config_dest/**/*.css -r -c ./postcss.config.js",
"postinstall": "selenium-standalone install",
"precompile": "npm run clean",
"prestats": "npm run build",
"prestyleguide": "npm run build",
"pretest": "npm run styleguide",
"stats": "stylestats $npm_package_config_dest/**/*.css",
"styleguide": "aigis run -c ./aigis/config.yml",
"test": "npm run test:html && npm run test:visual",
"test:html": "./bin/validate_html styleguide/**/*.html",
"test:visual": "./bin/gemini test",
"test:visual:update": "./bin/gemini update",
"watch": "onchange \"$npm_package_config_src/**/*.scss\" ./aigis -w -i -- concurrently 'npm run styleguide' 'npm run docs'"
},
"author": "Gridonic <[email protected]>",
"url": "https://gridonic.ch",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^7.2.4",
"chalk": "^2.3.0",
"concurrently": "^3.5.1",
"cssnano": "^3.10.0",
"figures": "^2.0.0",
"fs-extra": "^4.0.1",
"gemini": "^4.18.1",
"globby": "^7.1.1",
"html-validator": "^2.2.3",
"indent-string": "^3.2.0",
"node-aigis": "^1.4.1",
"node-sass": "^4.7.2",
"node-sass-magic-importer": "^4.1.4",
"onchange": "^3.3.0",
"postcss-cli": "^4.1.1",
"postcss-lh": "^1.1.4",
"postcss-replace": "^1.0.1",
"rimraf": "^2.6.2",
"sassdoc": "^2.3.0",
"selenium-standalone": "^6.7.0",
"stylestats": "^7.0.1",
"wait-on": "^2.0.2"
},
"dependencies": {
"family.scss": "^1.0.8",
"include-media": "^1.4.9",
"normalize.css": "^7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gridonic/sass.git"
},
"keywords": [
"sass",
"css",
"boilerplate",
"gridonic",
"foundation",
"styleguide",
"styleguide-generator",
"documentation",
"documentation-generator",
"sassdoc",
"aigis",
"rscss",
"gemini",
"visual-testing",
"ui-testing",
"testing"
],
"bugs": {
"url": "https://github.com/gridonic/sass/issues"
},
"homepage": "https://github.com/gridonic/sass#readme",
"browserslist": "last 2 versions",
"magicImporter": {
"disableImportOnce": true
}
}