-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.79 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
{
"name": "@theholocron/artoo",
"homepage": "https://the-holocron.github.io/artoo",
"description": "This utility droid provides a set of helpers for writing (S)CSS within the Galaxy.",
"author": "Newton Koumantzelis",
"version": "1.0.0",
"main": "src/_index.scss",
"files": [
"dist",
"src"
],
"repository": "https://github.com/the-holocron/artoo.git",
"bugs": "https://github.com/the-holocron/artoo/issues",
"releases": "https://github.com/the-holocron/artoo/releases",
"wiki": "https://github.com/the-holocron/artoo/wiki",
"license": "GPL-3.0",
"alex": {
"allow": [
"color",
"colors",
"dead",
"disabled",
"invalid"
]
},
"browserslist": [
"extends @theholocron/browserslist-config"
],
"commitlint": {
"extends": [
"@theholocron"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged --config @theholocron/lint-staged-config"
}
},
"publishConfig": {
"access": "public"
},
"release": {
"extends": "@theholocron/semantic-release-config",
"branch": "master"
},
"stylelint": {
"extends": "@theholocron/stylelint-config",
"rules": {
"plugin/stylelint-selector-no-empty": null
}
},
"scripts": {
"commit": "commit",
"docs": "sassdoc src --dest docs",
"dist": "npm run sass",
"postdist": "postcss dist/*.css --config ./node_modules/@theholocron/postcss-config --replace",
"lint": "stylelint src/**/*.scss --syntax scss",
"readme": "for file in src/**/*.scss; do sassdoc2md $file >> ${file%/*}/README.md; done",
"release": "semantic-release",
"sass": "for file in $(find src -type f -name '*.scss' ! -name '_*'); do sass --load-path=node_modules $file:dist/$(basename $file .scss).css; done",
"postsass": "for file in $(find src -type f -name '*.scss' ! -name '_*'); do sass --load-path=node_modules --style=compressed $file:dist/$(basename $file .scss).min.css; done",
"test:scss": "fusv src/",
"test:css": "mocha",
"test:docs": "alex .",
"test": "npm run test:scss && npm run test:docs && npm run test:css"
},
"dependencies": {
"@theholocron/config": "^0.3.0",
"@theholocron/scss-mixins": "^0.3.0"
},
"peerDependencies": {
"sass": "^1.26.3"
},
"devDependencies": {
"@hidoo/sassdoc-to-markdown": "^0.4.1",
"@theholocron/browserslist-config": "latest",
"@theholocron/commitlint-config": "latest",
"@theholocron/lint-staged-config": "latest",
"@theholocron/postcss-config": "latest",
"@theholocron/semantic-release-config": "latest",
"@theholocron/stylelint-config": "latest",
"alex": "^7.1.0",
"find-unused-sass-variables": "^1.0.5",
"mocha": "^7.0.0",
"sass": "^1.26.3",
"sass-true": "^5.0.0",
"sassdoc": "^2.7.1"
}
}