-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
69 lines (69 loc) · 1.69 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
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
{
"name": "godaddy-style",
"version": "6.0.0",
"private": true,
"description": "The approach to JavaScript at GoDaddy. We think it's pretty decent.",
"type": "module",
"engines": {
"node": ">=22",
"npm": ">=10"
},
"scripts": {
"lint": "turbo run lint",
"test": "turbo run test",
"version": "changeset version",
"release": "changeset publish",
"changeset": "changeset",
"clean": "npm run clean:packages && npm run clean:root",
"clean:packages": "turbo run clean",
"clean:root": "rimraf node_modules"
},
"repository": {
"type": "git",
"url": "[email protected]:godaddy/javascript.git"
},
"keywords": [
"godaddy",
"javascript",
"typescript",
"lint",
"styleguide",
"style-guide",
"eslint",
"es6",
"es2015",
"react",
"jsx",
"flow"
],
"license": "MIT",
"author": "GoDaddy.com Operating Company, LLC",
"homepage": "https://github.com/godaddy/javascript",
"bugs": {
"url": "https://github.com/godaddy/javascript/issues"
},
"bin": {
"godaddy-js-style-lint": "./bin/lint",
"godaddy-js-style-jscs": "./bin/jscs",
"godaddy-js-style-eslint": "./bin/eslint"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.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.2",
"react": "^19.0.0",
"rimraf": "^6.0.1",
"turbo": "^1.13.4",
"typescript": "^5.7.2"
},
"workspaces": [
"packages/*"
]
}