-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.22 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.22 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
{
"name": "newspack-ads",
"version": "3.10.1",
"author": "Automattic",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Automattic/newspack-ads.git"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Automattic/newspack-ads/issues"
},
"scripts": {
"cm": "newspack-scripts commit",
"semantic-release": "newspack-scripts release --files=newspack-ads.php",
"clean": "rm -rf dist",
"build": "npm run clean && newspack-scripts wp-scripts build",
"start": "npm ci && npm run watch",
"watch": "npm run clean && newspack-scripts wp-scripts start",
"test": "echo 'No JS unit tests in this repository.'",
"lint": "npm run lint:scss && npm run lint:js",
"lint:js": "newspack-scripts wp-scripts lint-js '**/{src,includes}/**/*.{js,jsx,ts,tsx}'",
"lint:js:staged": "newspack-scripts wp-scripts lint-js --ext .js,.jsx,.ts,.tsx",
"fix:js": "newspack-scripts wp-scripts lint-js --fix '**/{src,includes}/**/*.{js,jsx,ts,tsx}'",
"format:js": "newspack-scripts wp-scripts format '**/{src,includes}/**/*.{js,jsx,ts,tsx}'",
"lint:php": "./vendor/bin/phpcs",
"lint:php:staged": "./vendor/bin/phpcs --filter=GitStaged",
"fix:php": "./vendor/bin/phpcbf",
"lint:scss": "newspack-scripts wp-scripts lint-style '**/{src,includes}/**/*.scss' --customSyntax postcss-scss",
"lint:scss:staged": "newspack-scripts wp-scripts lint-style --customSyntax postcss-scss",
"format:scss": "newspack-scripts wp-scripts lint-style '**/{src,includes}/**/*.scss' --customSyntax postcss-scss --fix",
"release": "npm run build && npm run semantic-release",
"release:archive": "rm -rf release && mkdir -p release && rsync -r . ./release/newspack-ads --exclude-from='./.distignore' && cd release && zip -r newspack-ads.zip newspack-ads"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": "npm run lint:js:staged",
"*.scss": "npm run lint:scss:staged",
"*.php": "npm run lint:php:staged"
},
"dependencies": {
"@10up/component-tabs": "^2.0.1",
"newspack-components": "^4.1.0",
"prebid.js": "^8.51.0"
},
"devDependencies": {
"classnames": "^2.5.1",
"newspack-scripts": "github:Automattic/newspack-scripts#chore/refresh-dependencies"
}
}