-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.96 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
{
"name": "smntcs-retro",
"version": "1.0.0",
"description": "SMNTCS Retro is a minimalistic theme for the average nerd",
"author": "Niels Lange",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"Theme",
"SMNTCS Retro"
],
"homepage": "https://github.com/nielslange/smntcs-retro#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nielslange/smntcs-retro.git"
},
"bugs": {
"web": "https://github.com/nielslange/smntcs-retro/issues"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@cypress/browserify-preprocessor": "^3.0.1",
"@wordpress/browserslist-config": "^3.0.1",
"@wordpress/env": "^4.0.0",
"archiver": "^5.3.0",
"autoprefixer": "^10.2.5",
"chokidar-cli": "^2.1.0",
"cypress": "^6.8.0",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.9",
"postcss-cli": "^8.3.1",
"puppeteer": "^8.0.0",
"rtlcss": "^3.1.2",
"stylelint": "^13.12.0",
"stylelint-cli": "^1.3.0",
"stylelint-config-wordpress": "^17.0.0"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"scripts": {
"archive": "node archive.js",
"build:style": "node-sass assets/scss/style.scss style.css --output-style expanded --indent-type tab --indent-width 1 --source-map true",
"build:search": "node-sass assets/scss/search.scss search.css --output-style expanded --indent-type tab --indent-width 1 --source-map true",
"build:rtl": "rtlcss style.css style-rtl.css",
"build:ie": "postcss style.css -o assets/css/ie.css",
"build": "run-s \"build:*\"",
"watch": "chokidar \"**/*.scss\" -c \"npm run build\" --initial",
"lint:scss": "stylelint **/*.scss",
"start": "chokidar \"**/*.scss\" -c \"npm run build\" --initial",
"sync": "browser-sync start --proxy 'woo.local' --files '**/*' --no-inject-changes",
"test": "cypress run --headless --browser chrome",
"test:open": "cypress open",
"wp-env": "wp-env"
}
}