-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.97 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": "monkeytype-badge",
"version": "1.0.0",
"description": "Github action to update monkeytype personal best in your Readme",
"main": "dist/index.js",
"homepage": "https://github.com/vnphanquang/monkeytype-readme",
"repository": {
"type": "git",
"url": "https://github.com/vnphanquang/monkeytype-readme"
},
"bugs": {
"url": "https://github.com/vnphanquang/monkeytype-readme/issues"
},
"scripts": {
"lint:es": "eslint src --ext .ts",
"prettier": "prettier --check 'src/*.{ts,js,json}'",
"test": "jest",
"test:ci": "jest --ci --json --coverage --testLocationInResults --outputFile=coverage/report.json",
"tsc": "tsc --project tsconfig.json",
"ncc": "ncc build build/index.js -o dist",
"build": "run-s tsc ncc",
"semantic-release": "semantic-release"
},
"keywords": [
"action",
"monkeytype",
"badge",
"keyboard",
"readme"
],
"author": "Quang Phan",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.1",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"@vercel/ncc": "^0.33.3",
"conventional-changelog-conventionalcommits": "^4.6.3",
"dotenv": "^16.0.0",
"eslint": "^8.12.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-modules-newline": "^0.0.6",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}