UNPKG

1.52 kBJSONView Raw
1{
2 "name": "jsqr",
3 "version": "1.4.0",
4 "description": "A pure javascript QR code reading library that takes in raw images and will locate, extract and parse any QR code found within.",
5 "repository": "https://github.com/cozmo/jsQR",
6 "main": "./dist/jsQR.js",
7 "types": "./dist/index.d.ts",
8 "contributors": [
9 {
10 "name": "Cosmo Wolfe",
11 "email": "cosmo.wolfe@gmail.com"
12 },
13 {
14 "name": "Jefff Nelson",
15 "email": "gmjefff@gmail.com"
16 }
17 ],
18 "license": "Apache-2.0",
19 "devDependencies": {
20 "@types/fs-extra": "^4.0.2",
21 "@types/jest": "^20.0.8",
22 "@types/node": "^8.0.27",
23 "awesome-typescript-loader": "^3.2.3",
24 "fs-extra": "^4.0.1",
25 "jest": "^23.1.0",
26 "rimraf": "^2.6.2",
27 "ts-jest": "^23.0.4",
28 "ts-node": "^3.3.0",
29 "tslint": "^5.7.0",
30 "typescript": "^2.5.2",
31 "upng-js": "^1.0.1",
32 "webpack": "^3.10.0"
33 },
34 "scripts": {
35 "prebuild": "rimraf dist",
36 "build": "webpack",
37 "watch": "webpack --watch",
38 "test": "jest",
39 "lint": "tslint --project .",
40 "generate-test-data": "ts-node --project tests/ tests/generate-test-data.ts"
41 },
42 "jest": {
43 "testRegex": ".*test.ts",
44 "moduleFileExtensions": [
45 "ts",
46 "js"
47 ],
48 "transform": {
49 "^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
50 },
51 "globals": {
52 "ts-jest": {
53 "tsConfig": {
54 "noImplicitAny": false,
55 "lib": ["es2015"],
56 "types": ["jest", "node"]
57 }
58 }
59 }
60 }
61}