-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.52 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
{
"name": "@flowdegree/spit-it",
"description": "A command-line tool to extract and organize source code snippets from projects, enabling easy sharing and collaboration.",
"version": "2.3.0",
"license": "MIT",
"bin": {
"source-code-spitter": "index.js",
"spitit": "index.js",
"spit-it": "index.js"
},
"author": {
"name": "Mohannad F. Otaibi",
"email": "[email protected]",
"url": "https://www.mohannadotaibi.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flowdegree/spit-it.git"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/flowdegree/spit-it#readme",
"keywords": [
"source-code-spitter",
"Mohannad F. Otaibi",
"source code",
"dump",
"generator",
"command-line"
],
"files": [
"index.js",
"utils"
],
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\""
},
"dependencies": {
"@changesets/cli": "^2.26.2",
"@octokit/rest": "^20.0.1",
"chalk": "^4.1.2",
"cli-alerts": "^1.2.2",
"cli-handle-error": "^4.4.0",
"cli-handle-unhandled": "^1.1.1",
"cli-meow-help": "^3.1.0",
"cli-welcome": "^2.2.2",
"fs-extra": "^11.1.1",
"ignore": "^5.2.4",
"meow": "^9.0.0",
"open": "^9.1.0"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^3.0.1"
}
}