-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.81 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
{
"name": "billmate-style-library",
"version": "1.1.3",
"description": "Billmate styling library",
"main": "index.js",
"scripts": {
"css:build": "npm run css:resources && node-sass --include-path resources/ --omit-source-map-url --importer node_modules/node-sass-package-importer/dist/cli.js sass/styles.scss css/styles.css",
"css:build:minified": "npm run css:resources && node-sass --include-path resources/ --omit-source-map-url --importer node_modules/node-sass-package-importer/dist/cli.js sass/styles.scss css/styles.min.css --output-style compressed",
"css:watch": "npm run css:build -- --watch",
"css:lint": "npx stylelint sass/**/*.scss",
"css:resources": "cp ./node_modules/fontawesome5-webfont/css/fontawesome-all.css ./resources/fontawesome/css/ && cp -r ./node_modules/fontawesome5-webfont/webfonts ./resources/fontawesome/",
"css:prod": "npm run css:build && npm run css:build:minified",
"styleguide:watch": "stylemark -i sass/ -o docs/ -w -b -c .stylemark.yml",
"styleguide:build": "stylemark -i sass/ -o docs/ -c .stylemark.yml",
"start": "npm run css:watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Billmate/billmate-style-library.git"
},
"engines": {
"npm": ">=5",
"node": ">=8.15.1"
},
"author": "Billmate AB",
"license": "ISC",
"bugs": {
"url": "https://github.com/Billmate/billmate-style-library/issues"
},
"homepage": "https://github.com/Billmate/billmate-style-library#readme",
"dependencies": {
"bulma": "^0.9.0",
"bulma-checkradio": "^1.1.1",
"bulma-switch": "^2.0.0",
"fontawesome5-webfont": "^5.0.4"
},
"devDependencies": {
"node-sass": "^5.0.0",
"node-sass-package-importer": "^5.3.2",
"stylelint": "^13.9.0",
"stylelint-config-standard": "^20.0.0",
"stylemark": "^3.1.7"
}
}