forked from cozmo/jsQR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "jsqr",
"version": "1.2.0",
"description": "A pure javascript QR code reading library that takes in raw images and will locate, extract and parse any QR code found within.",
"repository": "https://github.com/cozmo/jsQR",
"main": "./dist/jsQR.js",
"types": "./dist/index.d.ts",
"contributors": [
{
"name": "Cosmo Wolfe",
"email": "cosmo.wolfe@gmail.com"
},
{
"name": "Jefff Nelson",
"email": "gmjefff@gmail.com"
}
],
"license": "Apache-2.0",
"devDependencies": {
"@types/fs-extra": "^4.0.2",
"@types/jest": "^20.0.8",
"@types/node": "^8.0.27",
"awesome-typescript-loader": "^3.2.3",
"fs-extra": "^4.0.1",
"jest": "^23.1.0",
"rimraf": "^2.6.2",
"ts-jest": "^20.0.14",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.5.2",
"upng-js": "^1.0.1",
"webpack": "^3.10.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "./node_modules/.bin/webpack",
"watch": "./node_modules/.bin/webpack --watch",
"test": "./node_modules/.bin/jest",
"lint": "tslint --project .",
"generate-test-data": "node_modules/.bin/ts-node --project tests/ tests/generate-test-data.ts"
},
"jest": {
"testRegex": ".*test.ts",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
}
}
}