-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.53 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@storepress/tooltip",
"version": "0.11.0",
"description": "StorePress ToolTip Plugin",
"author": "EmranAhmed",
"license": "GPL-2.0-or-later",
"keywords": [
"tooltip",
"responsive",
"scss",
"css tooltip"
],
"homepage": "https://emranahmed.github.io/simple-tooltip/",
"repository": {
"type": "git",
"url": "https://github.com/EmranAhmed/simple-tooltip.git"
},
"bugs": {
"url": "https://github.com/EmranAhmed/simple-tooltip/issues"
},
"files": [
"src/**"
],
"zip": [
"build/**",
"index.html"
],
"module": "src/index.js",
"sideEffects": [
"src/**"
],
"dependencies": {
"@storepress/utils": "^0.13.0"
},
"devDependencies": {
"@wordpress/base-styles": "^12.1.0",
"@wordpress/dependency-extraction-webpack-plugin": "^6.53.0",
"@wordpress/eslint-plugin": "^25.9.0",
"@wordpress/scripts": "^34.1.0",
"eslint-formatter-pretty": "^7.1.0",
"eslint-plugin-prettier": "^5.5.6",
"fs-extra": "^11.4.0",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"prettier": "npm:wp-prettier@^3.0.3",
"rimraf": "^6.1.3",
"webpack-remove-empty-scripts": "^1.1.1"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run start -- --no-watch && wp-scripts build --webpack-copy-php --experimental-modules",
"format": "wp-scripts format ./src",
"lint:css": "wp-scripts lint-style './src/**/*.scss'",
"lint:js": "wp-scripts lint-js --format=pretty './src/**/*.js' './script.js'",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "npm run package -- --zip",
"start": "rimraf build && wp-scripts start --webpack-copy-php --experimental-modules",
"postinstall": "git init -q && rimraf .husky && npx husky && echo \"npx lint-staged\" > .husky/pre-commit",
"prebuild": "rimraf build",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format:all": "npm run format:php && npm run format:css && npm run format:js",
"format:js": "wp-scripts format './src/**/*.js'",
"format:css": "wp-scripts format './src/**/*.scss'",
"lint:css:report": "npm run lint:css -- --output-file scss-report.txt",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:js:report": "npm run lint:js -- --format html --output-file lint-report.html",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"prepackage": "rimraf ${npm_package_name}.zip && npm run build",
"package": "./tools/package.js",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js"
}
}