-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.81 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
{
"name": "accoutrement",
"title": "Accoutrement",
"version": "4.0.5",
"description": "Sass design-systems management and utilities.",
"homepage": "https://www.oddbird.net/accoutrement/",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/oddbird/accoutrement.git"
},
"author": "Miriam Suzanne <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/oddbird/accoutrement/issues"
},
"keywords": [
"sass",
"accoutrement",
"toolkit",
"design systems",
"eyeglass-module"
],
"files": [
"sass/**/*",
"_index.scss",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"test": "mocha",
"lint:sass": "yarn lint:ci --fix",
"lint:ci": "stylelint '**/*.scss'",
"lint:other": "prettier --write '**/*.{js,json,md,yml}'",
"lint": "run-p lint:sass lint:other",
"docs": "sassdoc 'sass/**/*.scss'",
"watch:sass": "chokidar '**/*.scss' '**/.stylelintrc.yml' -c 'yarn lint:ci'",
"watch:tests": "chokidar 'test/**' 'sass/**/*.scss' -c 'yarn test'",
"watch:docs": "chokidar 'sass/**/*.scss' './.sassdocrc' -c 'yarn docs'",
"watch": "run-p watch:sass watch:tests watch:docs",
"commit": "run-s lint test",
"release": "run-s commit docs",
"prepack": "yarn run release"
},
"devDependencies": {
"chokidar-cli": "^3.0.0",
"mocha": "^11.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"sass-embedded": "^1.83.0",
"sass-true": "^8.1.0",
"sassdoc": "^2.7.4",
"sassdoc-theme-herman": "^6.0.2",
"stylelint": "^16.12.0",
"stylelint-config-standard-scss": "^14.0.0"
},
"eyeglass": {
"sassDir": "sass",
"exports": false,
"name": "accoutrement",
"needs": "^1.0.0"
},
"packageManager": "[email protected]"
}