-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
114 lines (114 loc) · 2.25 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "github-langs",
"version": "2.1.0",
"description": "show programming language based on the repos of github's account",
"engines": {
"node": "18.10.0",
"npm": "9.5.0"
},
"main": "index.js",
"scripts": {
"start": "node src/index.js | gulp",
"lint": "eslint '**/*.js' --ignore-pattern node_modules/",
"lint:fix": "eslint --fix '**/*.js' --ignore-pattern node_modules/",
"mocha": "mocha",
"test": "nyc mocha"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"mocha": {
"spec": [
"tests/**/*.test.js"
],
"exit": true
},
"nyc": {
"check-coverage": true,
"per-file": false,
"lines": 15,
"statements": 15,
"functions": 20,
"branches": 30,
"watermarks": {
"lines": [
0,
95
],
"functions": [
0,
95
],
"branches": [
0,
95
],
"statements": [
0,
95
]
},
"include": [
"public/js/*.js",
"src/*/*.js",
"src/*.js"
],
"exclude": [
"**/enum/*.js",
"**/models/*.js",
"**/config/*.js",
"coverage/**/*.js"
],
"extension": [
".js"
],
"cache": true,
"all": true,
"reporter": [
"lcov",
"text"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/wildan3105/github-langs.git"
},
"keywords": [
"github",
"language",
"repository"
],
"author": "Wildan S. Nahar",
"license": "MIT",
"bugs": {
"url": "https://github.com/wildan3105/github-langs/issues"
},
"homepage": "https://github.com/wildan3105/github-langs#readme",
"dependencies": {
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"bootstrap": "^4.5.2",
"express": "4.21.1",
"express-handlebars": "3.0.0",
"fs": "0.0.1-security",
"gulp": "^4.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"lodash": "^4.17.19",
"method-override": "^2.3.5",
"octokit": "^3.1.2",
"sass": "^1.66.1"
},
"devDependencies": {
"eslint": "~9.15.0",
"expect.js": "~0.3.1",
"husky": "^4.2.3",
"jsdom": "^16.4.0",
"mocha": "6.2.3",
"nyc": "^17.1.0",
"pm2": "^5.4.2"
}
}