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