-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.27 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
{
"name": "markguide",
"version": "1.0.2",
"license": "MIT",
"description": "Markguide is living style-guides & pattern library static site generator with extensive CSS monitoring and components info that could be used virtually with any scss/css project",
"keywords": [
"styleguide",
"styleguide-generator",
"documentation-generator",
"livingstyleguide",
"scss",
"css",
"markdown",
"markguide"
],
"engines": {
"node": ">=18",
"npm": ">=8.19"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"fancy-log": "^2.0.0",
"lorem-ipsum": "^2.0.8",
"marked": "^15.0.8",
"mustache": "^4.2.0",
"pug": "^3.0.3"
},
"devDependencies": {
"autoprefixer": "10.4.21",
"eslint": "9.25.0",
"gulp": "^5.0.0",
"gulp-connect": "5.7.0",
"gulp-postcss": "10.0.0",
"gulp-sass": "6.0.1",
"gulp-sourcemaps": "3.0.0",
"postcss": "^8.5.3",
"postcss-scss": "^4.0.9",
"prettier": "^3.5.3",
"sass": "^1.86.3",
"stylelint": "16.18.0",
"stylelint-config-standard-scss": "^14.0.0",
"yargs": "^17.7.2"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"Safari >= 14",
"iOS >= 14",
"last 2 Samsung versions",
"last 2 ChromeAndroid versions"
],
"main": "app/markguide.js",
"bin": {
"markguide": "bin/markguide.js"
},
"scripts": {
"test": "node test/navigation-tree.test.js",
"lint": "eslint ./ && stylelint ./",
"lintscss": "npx stylelint \"{./scss/*.scss,./scss/**/*.scss,./scss/**/**/*.scss}\"",
"formatscss": "npx prettier \"{./scss/*.scss,./scss/**/*.scss,./scss/**/**/*.scss}\" --print-width 255 --write --ignore-path=./.prettierignore",
"build": "gulp build",
"copyhooks": "node .githooks/copy-hooks.js",
"version": "npm run build && git add -A assets",
"postversion": "git push && git push --tags",
"debug": "node --nolazy --inspect-brk=9229 ./bin/markguide --build=.markguiderc.current.json"
},
"author": "nfxpnk, fret2buzz, base dimanech/atlas-guide"
}