-
Notifications
You must be signed in to change notification settings - Fork 251
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "awesome-qr",
"version": "2.1.5-rc.0",
"description": "An awesome but simple QR code generator written in JavaScript.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register **/**.test.ts",
"build": "webpack --config webpack.config.js && tsc",
"prepublishOnly": "webpack --config webpack.config.js && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SumiMakito/Awesome-qr.js.git"
},
"keywords": [
"qr",
"qrcode",
"barcode"
],
"author": "Makito <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SumiMakito/Awesome-qr.js/issues"
},
"homepage": "https://github.com/SumiMakito/Awesome-qr.js#readme",
"dependencies": {
"buffer": "^6.0.3",
"js-binary-schema-parser": "^2.0.0",
"skia-canvas": "^0.9.27"
},
"devDependencies": {
"@types/mocha": "^8.2.3",
"@types/node": "^14.0.14",
"@types/skia-canvas": "^0.9.2",
"jimp": "^0.16.1",
"jsqr": "^1.4.0",
"mocha": "^8.3.0",
"tmp": "^0.2.1",
"ts-loader": "^8.0.18",
"ts-node": "^10.1.0",
"typescript": "^3.9.6",
"webpack": "^5.27.2",
"webpack-cli": "^4.5.0"
}
}