-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
33 lines (33 loc) · 1.16 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
{
"name": "newspack-content-converter",
"version": "1.2.0",
"engines": {
"node": "16",
"npm": "8"
},
"dependencies": {
"@wordpress/base-styles": "^3.3.2",
"@wordpress/components": "^12.0.5",
"newspack-components": "^1.4.0",
"npm-run-all": "^4.1.5",
"query-string": "^6.13.8",
"sass": "^1.67.0"
},
"scripts": {
"build:js": "calypso-build",
"build": "newspack-scripts build",
"build-old": "run-p \"build:*\"",
"clean": "rm -rf assets/dist/",
"dev:js": "calypso-build --watch",
"dev": "run-p \"dev:*\"",
"start": "npm run dev",
"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": {
"newspack-scripts": "^5.3.0",
"eslint": "^7.32.0",
"prettier": "npm:wp-prettier@^2.6.2-beta-1"
}
}