forked from godaddy/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.58 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.58 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": "godaddy-style",
"version": "0.0.0",
"private": true,
"description": "The approach to JavaScript at GoDaddy. We think it's pretty decent.",
"type": "module",
"engines": {
"node": ">=22"
},
"devEngines": {
"node": ">=22",
"pnpm": ">=10"
},
"scripts": {
"lint": "pnpm run -r lint",
"test": "pnpm run -r --parallel test",
"version": "changeset version && pnpm install --prefer-offline",
"release": "changeset publish",
"changeset": "changeset",
"clean": "pnpm run clean:packages && pnpm run clean:root",
"clean:packages": "pnpm run -r clean",
"clean:root": "rimraf node_modules"
},
"repository": {
"type": "git",
"url": "git@github.com:godaddy/javascript.git"
},
"keywords": [
"godaddy",
"javascript",
"typescript",
"lint",
"styleguide",
"style-guide",
"eslint",
"react",
"jsx"
],
"license": "MIT",
"author": "GoDaddy.com Operating Company, LLC",
"homepage": "https://github.com/godaddy/javascript",
"bugs": {
"url": "https://github.com/godaddy/javascript/issues"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^9.24.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-react": "^7.37.5",
"react": "^19.1.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
},
"packageManager": "pnpm@10.14.0"
}