-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.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
{
"name": "mawesome",
"version": "2.2.0",
"description": "Generate awesome list from user starred repositories",
"main": "index.js",
"author": "Simone Corsi<[email protected]>",
"license": "MIT",
"scripts": {
"style:lint": "eslint src --ext .ts",
"style:prettier": "prettier \"src/**/*.ts\" --list-different --write",
"build": "./node_modules/.bin/ncc build src/index.ts -o ./",
"dev": "ts-node-dev src/index.ts",
"prepare": "node prepare.js || echo 'Skipping prepare'"
},
"keywords": [
"github",
"action",
"awesome",
"list",
"generator",
"typescript",
"javascript"
],
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@octokit/rest": "^20.0.2",
"@octokit/types": "^12.6.0",
"@saithodev/semantic-release-backmerge": "^4.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/ejs": "^3.1.5",
"@types/got": "^9.6.12",
"@types/node": "^20.11.30",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"markdown-toc": "^1.2.0",
"nyc": "^15.0.1",
"prettier": "^3.2.5",
"sinon": "^17.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.3"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"ejs": "^3.1.10",
"gh-star-fetch": "^1.5.0",
"got": "^11.8.5",
"remark": "^15.0.1",
"remark-toc": "^9.0.0"
},
"volta": {
"node": "16.14.2",
"npm": "8.6.0"
}
}