-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 981 Bytes
/
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
{
"name": "kuvia",
"version": "0.4.1",
"description": "Simple web image gallery generator",
"main": "bin/kuvia.js",
"bin": {
"kuvia": "bin/kuvia.js"
},
"dependencies": {
"browserify": "^17.0.0",
"glob": "^7.1.7",
"handlebars": "^4.7.7",
"node-getopt": "^0.3.2",
"q": "^1.5.1",
"uglifycss": "^0.0.29",
"uglifyify": "^5.0.2"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"jest": "^27.1.0"
},
"scripts": {
"test": "jest --coverage",
"lint": "eslint web/*.js bin/*.js",
"githooks": "node setup-hooks.js"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/lepovirta/kuvia.git"
},
"author": "Jaakko Pallari",
"license": "BSD-2-Clause",
"jest": {
"coverageReporters": [
"text",
"cobertura"
]
}
}