-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.18 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
{
"name": "github-readme-learn-section-notion",
"version": "1.0.2",
"description": "A github action to auto-populate github readme learn section with data fetched from a remote notion database",
"main": "dist/index.js",
"scripts": {
"prebuild": "npm run format && npm run transpile",
"build": "npx ncc build ./src/index.ts -o dist -t",
"format": "npx prettier --write src/**/*.ts",
"transpile": "npx tsc",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Devorein/github-readme-learn-section-notion.git"
},
"keywords": [],
"author": "Safwan Shaheer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Devorein/github-readme-learn-section-notion/issues"
},
"homepage": "https://github.com/Devorein/github-readme-learn-section-notion#readme",
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/http-client": "^1.0.11"
},
"devDependencies": {
"@nishans/types": "^0.0.35",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"@vercel/ncc": "^0.28.5",
"typescript": "^4.2.4"
}
}