forked from lrsjng/kjua
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "kjua-svg",
"version": "1.13.1",
"description": "Dynamically generated QR codes for modern browsers.",
"homepage": "https://github.com/werthdavid/kjua",
"bugs": "https://github.com/werthdavid/kjua/issues",
"authors": [
{
"name": "Lars Jung",
"email": "[email protected]"
},
{
"name": "David Werth",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/werthdavid/kjua.git"
},
"main": "kjua.min.js",
"typings": "./kjua.d.ts",
"scripts": {
"lint": "eslint .",
"build": "node ghu release",
"precommit": "npm run -s lint && npm run -s build",
"package": "npm run -s build && copyfiles kjua.d.ts README.md package.json dist/ && copyfiles -u 1 dist/kjua.min.js docs"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"copyfiles": "^2.4.0",
"eslint": "^7.10.0",
"ghu": "^0.26.0",
"qrcode-generator": "^1.4.4",
"scar": "^2.3.0"
},
"engines": {
"node": ">=10.0.0"
}
}