-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
39 lines (39 loc) · 1.33 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
34
35
36
37
38
39
{
"name": "wordpress-string-locator",
"version": "2.4.2",
"description": "Find and edit code or texts in your themes and plugins.",
"author": "instawp",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"plugin"
],
"homepage": "https://instawp.com",
"repository": {
"type": "git",
"url": "https://github.com/InstaWP/wordpress-string-locator"
},
"bugs": "https://github.com/InstaWP/wordpress-string-locator/issues",
"engines": {
"node": ">=10.16.0"
},
"devDependencies": {
"@wordpress/env": "^8.2.0",
"@wordpress/scripts": "^26.6.0",
"@wordpress/stylelint-config": "^21.18.0"
},
"scripts": {
"start": "wp-scripts start src/javascript/string-locator.js src/javascript/string-locator-search.js src/javascript/string-locator-replace.js src/javascript/string-locator-instawp.js",
"build": "wp-scripts build src/javascript/string-locator.js src/javascript/string-locator-search.js src/javascript/string-locator-replace.js src/javascript/string-locator-instawp.js",
"lint:css": "wp-scripts lint-style ./src/sass/**/*.scss",
"lint:js": "wp-scripts lint-js ./src/javascript/**/*.js",
"wp-env": "wp-env",
"cli": "wp-env run cli wp"
},
"stylelint": {
"extends": "@wordpress/stylelint-config/scss",
"rules": {
"no-descending-specificity": null
}
}
}