| 1 |
{ |
| 2 |
"private": true, |
| 3 |
"directories": { |
| 4 |
"test": "tests" |
| 5 |
}, |
| 6 |
"engines": { |
| 7 |
"node": ">=14", |
| 8 |
"npm": ">=7" |
| 9 |
}, |
| 10 |
"scripts": { |
| 11 |
"build": "wp-scripts build", |
| 12 |
"start": "wp-scripts start", |
| 13 |
"test": "npm run test:unit", |
| 14 |
"test:unit": "wp-scripts test-unit-js", |
| 15 |
"test:unit:help": "wp-scripts test-unit-js --help", |
| 16 |
"test:unit:watch": "wp-scripts test-unit-js --watch", |
| 17 |
"test:unit:debug": "wp-scripts --inspect-brk test-unit-js --runInBand --no-cache" |
| 18 |
}, |
| 19 |
"repository": { |
| 20 |
"type": "git", |
| 21 |
"url": "git+https://github.com/Parsely/wp-parsely.git" |
| 22 |
}, |
| 23 |
"license": "GPL-2.0-or-later", |
| 24 |
"bugs": { |
| 25 |
"url": "https://github.com/Parsely/wp-parsely/issues" |
| 26 |
}, |
| 27 |
"homepage": "https://github.com/Parsely/wp-parsely#readme", |
| 28 |
"browserslist": [ |
| 29 |
"defaults" |
| 30 |
], |
| 31 |
"devDependencies": { |
| 32 |
"@wordpress/eslint-plugin": "^9.1.2", |
| 33 |
"@wordpress/scripts": "^17.1.0", |
| 34 |
"prettier": "^2.3.2" |
| 35 |
}, |
| 36 |
"dependencies": { |
| 37 |
"@wordpress/dom-ready": "^2.13.2", |
| 38 |
"@wordpress/i18n": "^3.20.0", |
| 39 |
"js-cookie": "^3.0.0" |
| 40 |
} |
| 41 |
} |
| 42 |
|