-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.49 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.49 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "bigiron.css",
"version": "2.0.7",
"description": "A drop-in collection of CSS styles to make simple websites just a little nicer",
"main": "dist/index.js",
"sideEffects": "false",
"scripts": {
"commit": "cz",
"docs": "(npm run update:docs && cd docs && npm i && npm run dev)",
"update:docs": "ts-node scripts/update.ts",
"build": "gulp build && rollup -c",
"start": "gulp watch",
"lint:js": "eslint bookmarklet/original.js docs/script.js docs/index.html gulpfile.js",
"lint:css": "stylelint src/**/*.css docs/style.css",
"lint": "npm lint:js --fix && npm lint:css --fix",
"accessibility": "npm build && node accessibility.js",
"validate": "npm lint:js && npm lint:css && npm accessibility",
"pre-commit": "npm run update:docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Robbie-Cook/bigiron.css.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"css",
"css-framework",
"simple",
"minimal"
],
"author": "Robbie Cook",
"release": {
"branches": [
"main"
]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Robbie-Cook/bigiron.css/issues"
},
"homepage": "https://github.com/Robbie-Cook/bigiron.css",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@changesets/cli": "^2.7.2",
"@rollup/plugin-typescript": "^8.2.1",
"@rollup/plugin-url": "^6.0.0",
"@types/css": "0.0.31",
"@types/jest": "^26.0.23",
"autoprefixer": "^10.2.5",
"browser-sync": "^2.27.3",
"chalk": "^4.1.0",
"css": "^3.0.0",
"cssnano": "^5.0.2",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.11.20",
"eslint": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-markdown": "^2.0.0-alpha.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-bytediff": "^1.0.0",
"gulp-filter": "^6.0.0",
"gulp-flatten": "^0.4.0",
"gulp-postcss": "^9.0.0",
"gulp-posthtml": "^3.0.4",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.1.0",
"gulp-sizereport": "^1.2.1",
"gulp-sourcemaps": "^2.6.5",
"gulp-terser": "^2.0.1",
"htmlnano": "^0.2.3",
"husky": "^6.0.0",
"jest": "^27.0.6",
"node-sass": "^5.0.0",
"pa11y": "^5.3.0",
"postcss": "^8.3.5",
"postcss-color-mod-function": "^2.4.3",
"postcss-css-variables": "^0.12.0",
"postcss-import": "^14.0.2",
"postcss-inline-svg": "^5.0.0",
"prettier": "^2.4.1",
"raw-loader": "^4.0.2",
"rollup": "^2.52.7",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-string": "^3.0.0",
"semantic-release": "^17.4.3",
"stylelint": "^9.3.0",
"stylelint-config-standard": "^21.0.0",
"ts-jest": "^27.0.3",
"ts-loader": "^8.0.11",
"typescript": "^4.4.4",
"v8-compile-cache": "^2.2.0",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",
"webpack-node-externals": "^2.5.2"
},
"browserslist": [
"defaults"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"dependencies": {
"next-seo": "^4.28.1",
"postcss-js": "^3.0.3",
"ts-node": "^10.3.0"
}
}