forked from yusanshi/emgithub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.91 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
{
"name": "git-embed",
"version": "0.1.2",
"description": "Embed a file from GitHub repository just like [GitHub Gist](https://gist.github.com/)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"url": "git+https://github.com/dimaslanjaka/embed-like-gist.git"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.build.json",
"update:ncu": "npx npm-check-updates --doctor -u -x chalk,highlight.js,jsdom --enginesNode 14",
"update": "run-s \"update:**\"",
"clean": "rm -rf dist && yarn run build",
"lint": "eslint --fix",
"prepare": "husky install"
},
"keywords": [
"github",
"embed"
],
"author": "Dimas Lanjaka <[email protected]> (https://www.webmanajemen.com)",
"license": "ISC",
"devDependencies": {
"@jest/environment": "^29.5.0",
"@jest/expect": "^29.5.0",
"@jest/globals": "^29.5.0",
"@jest/types": "^29.5.0",
"@types/eslint": "^8",
"@types/node": "^18.16.3",
"@types/prettier": "^2",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-config": "^29.5.0",
"jest-mock": "^29.5.0",
"lint-staged": "^13.2.2",
"npm-check-updates": "^16.10.12",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.4.0",
"highlight.js": "^11.8.0",
"sbg-utility": "^1.0.9"
},
"directories": {
"test": "test"
},
"bugs": {
"url": "https://github.com/dimaslanjaka/embed-like-gist/issues"
},
"homepage": "https://github.com/dimaslanjaka/embed-like-gist#readme",
"engines": {
"node": "^14.0.0",
"npm": "^8.0.0",
"yarn": "^3.0.0"
},
"packageManager": "[email protected]"
}