This repository has been archived by the owner on Jul 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
88 lines (88 loc) · 2.31 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
{
"name": "24ways-frontend",
"version": "2017.0.0",
"description": "Bits, the front-end component library for 24 ways",
"keywords": [
"styleguide",
"patterns",
"library"
],
"homepage": "http://bits.24ways.org",
"bugs": "https://github.com/24ways/frontend/issues",
"license": "SEE LICENSE IN LICENSE",
"author": "Paul Robert Lloyd",
"repository": {
"type": "git",
"url": "https://github.com/24ways/frontend.git"
},
"main": "fractal.config.js",
"scripts": {
"prestart": "npm install",
"start": "node_modules/.bin/gulp start",
"build": "node_modules/.bin/gulp build",
"dev": "node_modules/.bin/gulp dev",
"publish": "node_modules/.bin/gulp publish",
"test": "xo || stylelint src/**/*.css"
},
"browserslist": [
">2%"
],
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"property-no-unknown": [
true,
{
"ignoreProperties": [
"font-range"
]
}
]
}
},
"xo": {
"space": true,
"envs": "browser"
},
"dependencies": {
"@frctl/fractal": "^1.3.0",
"@frctl/mandelbrot": "^1.4.0",
"@frctl/nunjucks": "^2.0.2",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"autoprefixer": "^9.8.4",
"cssnano": "^4.1.10",
"del": "^5.1.0",
"fontfaceobserver": "^2.1.0",
"gulp": "^4.0.2",
"gulp-gh-pages": "^0.5.0",
"gulp-imagemin": "^7.1.0",
"gulp-postcss": "^8.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-util": "^3.0.0",
"markdown-it": "^11.0.0",
"markdown-it-abbr": "^1.0.0",
"markdown-it-footnote": "^3.0.2",
"nunjucks-date": "^1.5.0",
"postcss-apply": "^0.12.0",
"postcss-assets": "^5.0.0",
"postcss-calc": "^7.0.2",
"postcss-color-function": "^4.1.0",
"postcss-custom-media": "^7.0.8",
"postcss-custom-properties": "^9.1.1",
"postcss-easy-import": "^3.0.0",
"postcss-map": "^0.11.0",
"postcss-media-minmax": "^4.0.0",
"postcss-nested": "4.2.3",
"postcss-responsive-type": "^1.0.0",
"postcss-simple-vars": "^5.0.2",
"prismjs": "^1.20.0",
"rollup": "^2.20.0",
"rollup-plugin-closure-compiler-js": "^1.0.0"
},
"devDependencies": {
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"xo": "^0.32.1"
}
}