-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.03 KB
/
package.json
File metadata and controls
23 lines (23 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "newspack-content-converter",
"version": "1.2.0",
"dependencies": {
"@wordpress/components": "^29.3.0",
"newspack-components": "^3.1.0",
"npm-run-all": "^4.1.5",
"sass": "^1.67.0"
},
"scripts": {
"clean": "rm -rf assets/dist/",
"build": "npm run clean && newspack-scripts wp-scripts build --output-path assets/dist",
"start": "npm run clean && newspack-scripts wp-scripts start --output-path assets/dist",
"release:build-all": "composer install --no-dev && NODE_ENV=production run-p \"build\"",
"release:archive": "mkdir -p assets/release && zip -r assets/release/newspack-content-converter.zip . -x assets/release/\\* bin/\\* tests/\\* node_modules/\\* .git/\\* .github/\\* .cache/\\* .gitignore .editorconfig .prettierrc phpcs.xml phpunit.xml.dist .DS_Store",
"release": "run-p \"clean\" && run-p \"release:build-all\" && run-p \"release:archive\""
},
"devDependencies": {
"eslint": "^7.32.0",
"newspack-scripts": "^5.5.2",
"prettier": "npm:wp-prettier@^2.6.2-beta-1"
}
}