-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
86 lines (86 loc) · 2.33 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
{
"name": "atlas-guide",
"version": "3.0.0",
"license": "MIT",
"description": "Atlas 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",
"statistic",
"atlas",
"hologram",
"aigis"
],
"engines": {
"node": ">=18",
"npm": ">=8"
},
"dependencies": {
"@dimanech/cssstat-core": "3.3.1",
"d3-color": "^3.1.0",
"d3-format": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-shape": "^3.2.0",
"lodash.camelcase": "^4.3.0",
"lodash.uniq": "^4.5.0",
"marked": "4.0.10",
"mustache": "^4.2.0",
"postcss": "8.4.31",
"postcss-scss": "^4.0.9",
"sass": "^1.76.0",
"sass-graph": "^4.0.1"
},
"devDependencies": {
"@snyk/protect": "^1.1291.0",
"autoprefixer": "10.4.19",
"eslint": "9.1.1",
"gulp": "^5.0.0",
"gulp-connect": "5.7.0",
"gulp-postcss": "10.0.0",
"gulp-sass": "5.1.0",
"gulp-sourcemaps": "^2.6.5",
"mocha": "10.1.0",
"nyc": "15.1.0",
"stylelint": "16.4.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-order": "6.0.4",
"stylelint-scss": "6.2.1"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"ie >= 10",
"Safari >= 10",
"iOS >= 9",
"last 2 Samsung versions",
"last 2 ChromeAndroid versions"
],
"main": "app/atlas-guide.mjs",
"bin": {
"atlas-guide": "bin/atlas-guide.js"
},
"scripts": {
"lint": "eslint **/*.mjs && stylelint **/*.scss --cache --cache-location .cache/scsslint/ --cache-strategy content",
"test": "nyc mocha",
"coverage": "nyc report --reporter=lcov --reporter=text-lcov",
"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/atlas-guide --build",
"prepare": "npm run snyk-protect",
"snyk-protect": "snyk-protect"
},
"repository": {
"type": "git",
"url": "git@github.com:dimanech/atlas-guide.git"
},
"author": "Nechepurenko D.",
"snyk": true
}