This repository was archived by the owner on Feb 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.08 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
{
"name": "responsive-child-starter",
"version": "0.0.0",
"description": "A starting point for Responsive Framework child themes. (2.3.0)",
"repository": "https://github.com/bu-ist/responsive-child-starter/",
"license": "GPL-3.0-or-later",
"contributors": [
"Your Name <you@bu.edu>"
],
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"browserify-shim": {
"jQuery": "global:jQuery"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@wordpress/babel-preset-default": "^4.12.1",
"@wordpress/eslint-plugin": "^5.1.0",
"autoprefixer": "^9.7.6",
"babelify": "^10.0.0",
"browserify-shim": "^3.8.14",
"eslint": "^6.8.0",
"grunt": "^1.0.4",
"grunt-browserify": "^5.3.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-notify": "^0.4.1",
"grunt-postcss": "^0.9.0",
"grunt-sass": "^3.1.0",
"grunt-version": "^2.0.0",
"grunt-wp-i18n": "^1.0.3",
"node-sass": "^4.14.0",
"responsive-foundation": "git+ssh://git@github.com:bu-ist/responsive-foundation#4.0.2",
"stylelint": "^13.3.3",
"stylelint-config-wordpress": "^16.0.0"
},
"scripts": {
"postinstall": "grunt install && composer install",
"styles:lint": "stylelint \"**/*.scss\" --cache || echo \"\"",
"styles:fix": "stylelint \"**/*.scss\" --cache --fix --s || echo \"\" && npm run styles:fix:success --s && npm run styles:fix:warn --s",
"styles:fix:success": "echo \"\\033[32mSuccess! Fixed style errors where possible.\\x1b[0m\"",
"styles:fix:warn": "echo \"\\033[33m\nErrors which could not be resolved automatically are listed above. Please review changes carefully in Tower or your git management tool of choice before committing, as errors can occur, especially in Sass maps.\n\\x1b[0m\"",
"lint:php": "dev/phpcs/lint-modified.sh",
"lint:php:all": "dev/phpcs/lint-all.sh"
}
}