-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
75 lines (75 loc) · 1.87 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
{
"name": "@useblu/ocean-core",
"version": "1.72.0",
"private": false,
"description": "UIkit css that implement Ocean's Design System.",
"files": [
"dist"
],
"scripts": {
"build": "gulp",
"build:watch": "gulp watch",
"format": "prettier --write 'src/**'",
"lint": "stylelint 'src/**/*.scss'",
"lint:fix": "stylelint 'src/**/*.scss' --fix"
},
"keywords": [
"css",
"scss",
"framework",
"responsive",
"ocean design"
],
"homepage": "https://ocean-ds.github.io/ocean-web/index.html",
"bugs": "https://github.com/ocean-ds/ocean-web/issues",
"license": "GPL-3.0",
"author": "Blu Pagamentos <devs@useblu.com.br>",
"repository": {
"type": "git",
"url": "https://github.com/ocean-ds/ocean-web.git",
"directory": "packages/ocean-core"
},
"devDependencies": {
"@types/cssnano": "^4.0.0",
"@types/gulp": "^4.0.8",
"@types/gulp-plumber": "^0.0.33",
"@types/gulp-postcss": "^8.0.0",
"@types/gulp-rename": "^2.0.0",
"@types/gulp-sass": "^5.0.0",
"@types/gulp-size": "^4.0.0",
"@types/gulp-sourcemaps": "^0.0.35",
"@types/sass": "^1.16.1",
"@useblu/ocean-tokens": "3.8.0",
"autoprefixer": "^10.2.5",
"cssnano": "^5.0.1",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.0.0",
"gulp-size": "^4.0.1",
"gulp-sourcemaps": "^3.0.0",
"node-sass": "^7.0.1",
"postcss": "^8.2.9",
"stylelint": "^14.1.0",
"stylelint-config-sass-guidelines": "^9.0.0"
},
"browserslist": [
"defaults"
],
"stylelint": {
"extends": "stylelint-config-sass-guidelines",
"rules": {
"max-nesting-depth": 2,
"selector-class-pattern": null
},
"ignoreFiles": [
"dist/*.css"
]
},
"publishConfig": {
"access": "public"
},
"sideEffects": false
}