-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
140 lines (140 loc) · 3.94 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "@stoplight/scripts",
"version": "0.0.0",
"description": "Scripts that help when creating, testing, releasing, and linting libraries.",
"keywords": [],
"sideEffects": false,
"homepage": "https://github.com/stoplightio/scripts",
"bugs": "https://github.com/stoplightio/scripts/issues",
"author": "Stoplight <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/stoplightio/scripts.git"
},
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/bin",
"/dist",
"/templates",
"/vendor",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"release.js",
"jest-preset.js",
"jest.config.js",
"rollup.config.js",
"tsconfig.json",
"!__tests__"
],
"oclif": {
"commands": "./dist/commands",
"bin": "sl-scripts",
"plugins": [
"@oclif/plugin-help"
]
},
"engines": {
"node": ">=16"
},
"bin": {
"sl-scripts": "./bin/run"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --module commonjs",
"postbuild": "oclif manifest && oclif readme",
"test": "jest",
"test.watch": "jest --watch",
"test.prod": "yarn lint && yarn test --coverage --maxWorkers=2",
"test.update": "yarn test --updateSnapshot",
"lint": "yarn prettier.check && eslint .",
"prettier.check": "prettier --ignore-path .eslintignore --check '**/*.{js,jsx,ts,tsx,md}'",
"lint.fix": "prettier --ignore-path .eslintignore --write '**/*.{js,jsx,ts,tsx,md}'; eslint . --fix",
"commit": "git-cz",
"release": "semantic-release",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf dist && yarn build",
"prepare": "husky"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"lint-staged": {
"*.{ts,tsx}$": [
"yarn lint.fix"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@oclif/command": "1.8.36",
"@optimize-lodash/rollup-plugin": "^4.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/pluginutils": "^5.1.0",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.2.6",
"@semantic-release/npm": "11.0.3",
"@semantic-release/release-notes-generator": "12.1.0",
"cli-ux": "6.0.9",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"esm": "^3.2.25",
"estree-walker": "^3.0.3",
"find-up": "^5.0.0",
"husky": "9.0.11",
"inquirer": "8.2.3",
"lint-staged": "15.2.5",
"magic-string": "0.30.x",
"oclif": "4.13.0",
"rimraf": "5.0.7",
"rollup": "^4.18.0",
"@rollup/plugin-typescript": "^11.1.6",
"semantic-release": "22.0.12",
"shelljs": "0.8.x",
"tslib": "^2.6.3"
},
"devDependencies": {
"@stoplight/eslint-config": "^3.0.0",
"@types/inquirer": "^8.0.0",
"@types/jest": "29.5.12",
"@types/lodash": "4.17.4",
"@types/node": "20.14.2",
"@types/shelljs": "0.8.15",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.0",
"jest": "29.7.0",
"lodash": "4.17.21",
"prettier": "^3.3.1",
"ts-jest": "29.1.4",
"ts-node": "10.9.2",
"typescript": "^5.4.5"
}
}