-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "employer-style-base",
"version": "4.3.0",
"author": "[email protected]",
"license": "Apache-2.0",
"description": "A stack-agnostic Sass library providing basic components and typography intended for the Employer experience",
"repository": "github:cb-talent-development/employer-style-base",
"keywords": [
"cb",
"careerbuilder",
"employer",
"platform",
"style",
"styling",
"foundation",
"base",
"sass",
"css",
"components",
"typography"
],
"files": [
"sass"
],
"main": "sass/_base.scss",
"dependencies": {
"@frctl/fractal": "^1.1.4",
"autoprefixer": "^7.1.2",
"bourbon": "^4.3.4",
"chokidar-cli": "^1.2.0",
"npm-run-all": "^4.0.2",
"postcss-cli": "^4.1.0"
},
"devDependencies": {
"node-sass-chokidar": "^0.0.3"
},
"scripts": {
"fractal": " ./node_modules/.bin/fractal start --sync",
"build-task:scss-compile": "node-sass-chokidar --source-map true sass/employer_style_base.scss -o dist/css",
"build-task:autoprefixer": "postcss dist/css/*.css --use autoprefixer -d dist/css",
"sass:build": "npm-run-all -p build-task:*",
"sass:watch": "chokidar 'sass/*.scss' -c 'npm run sass:build'",
"dev": "npm-run-all -p sass:*"
}
}