-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.45 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
{
"name": "@badasswp/sculpt-cli",
"description": "A CLI tool for sculpting WP plugins quickly.",
"version": "1.0.10",
"license": "MIT",
"type": "module",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/badasswp/sculpt.git"
},
"bin": {
"sculpt-cli": "index.js",
"sculpt": "index.js"
},
"author": {
"name": "badasswp",
"email": "badasswpdev@gmail.com",
"url": "https://github.com/badasswp"
},
"keywords": [
"sculpt-cli",
"badasswp"
],
"files": [
"index.js",
"pnpm-lock.yaml",
"utils",
"src",
"repo",
"repo/.gitignore"
],
"scripts": {
"verify": "prettier --check \"./**/*.{js,json}\"",
"format": "prettier --write \"./**/*.{js,json}\"",
"lint:js": "NODE_OPTIONS='--no-warnings' eslint .",
"lint:js:fix": "NODE_OPTIONS='--no-warnings' eslint . --fix",
"lint": "yarn verify && yarn lint:js",
"lint:fix": "yarn format && yarn lint:js:fix",
"test": "jest --passWithNoTests --verbose .",
"test:js": "jest --passWithNoTests --verbose .",
"test:watch": "jest --watchAll ."
},
"dependencies": {
"chalk": "^5.4.1",
"cli-alerts": "^2.0.0",
"cli-handle-error": "^4.4.1",
"cli-handle-unhandled": "^1.1.2",
"cli-meow-help": "^4.0.0",
"cli-welcome": "^3.0.1",
"get-package-json-file": "^2.0.0",
"meow": "^13.2.0"
},
"devDependencies": {
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"prettier": "^3.5.2"
}
}