-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.8 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.8 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@adso-sass/flags",
"version": "2.0.3",
"description": "SCSS flags collection",
"author": "Adam Sokołowski <adam.sokolowski@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:adam-sokolowski/flags.git"
},
"bugs": "https://github.com/adam-sokolowski/flags/issues",
"keywords": [
"flags",
"sass",
"scss",
"css",
"countries",
"css flags",
"base64",
"flag symbols",
"flag helper"
],
"main": "dist/_index.scss",
"files": [
"dist/**/*",
"assets/**/*",
"src/**/*"
],
"sass": "src/flags/index.scss",
"scripts": {
"sass:lint": "stylelint './**/*.scss'",
"sass:compile": "sass src/flags/_index.scss dist/index.css",
"package:release:patch": "standard-version --release-as patch",
"package:release:minor": "standard-version --release-as minor",
"package:githooks:reset": "rm -rf ./.git/hooks/* && rm -rf node_modules/husky && yarn install --check-files",
"storybook:compile": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006"
},
"husky": {
"hooks": {
"pre-commit": [
"yarn sass:lint"
],
"pre-push": [
"yarn sass:compile"
]
}
},
"devDependencies": {
"@babel/core": "~7.14.0",
"@storybook/addon-knobs": "~6.4.0",
"@storybook/html": "~6.4.0",
"babel-loader": "~8.2.0",
"husky": "~6.0.0",
"path": "~0.12.7",
"postcss": "8.4.45",
"postcss-scss": "^4.0.9",
"sass": "~1.78.0",
"sass-loader": "~10.0.0",
"standard-version": "~9.5.0",
"stylelint": "~15.10.1",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-order": "~4.1.0",
"stylelint-scss": "~3.19.0"
},
"resolutions": {
"dot-prop": "^6.0.0",
"prismjs": "^1.24.0",
"serialize-javascript": "^6.0.0"
}
}