forked from cozmo/jsQR
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
73 lines (73 loc) · 1.8 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "jsqr-es6",
"version": "1.4.0-1",
"description": "Fork of jsqr (github.com/cozmo/jsQR) that builds a es-6 target and adds color correction and performance improvements.",
"repository": "https://github.com/danimoh/jsQR",
"main": "./dist/jsQR.js",
"module": "./dist/jsQR.js",
"types": "./dist/index.d.ts",
"contributors": [
{
"name": "Cosmo Wolfe",
"email": "[email protected]"
},
{
"name": "Jefff Nelson",
"email": "[email protected]"
},
{
"name": "danimoh"
}
],
"license": "Apache-2.0",
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.4",
"@types/node": "^16.4.13",
"@types/upng-js": "^2.1.2",
"fs-extra": "^10.0.0",
"full-icu": "^1.3.4",
"jest": "^27.0.6",
"rimraf": "^3.0.2",
"rollup": "^2.56.1",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"tslint": "^6.1.2",
"typescript": "^4.3.5",
"upng-js": "^2.1.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup --config",
"watch": "rollup --config --watch",
"test": "env NODE_ICU_DATA=./node_modules/full-icu jest",
"lint": "tslint --project .",
"generate-test-data": "env NODE_ICU_DATA=./node_modules/full-icu ts-node --project tests/tsconfig.json tests/generate-test-data.ts"
},
"jest": {
"testRegex": ".*test.ts",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"globals": {
"ts-jest": {
"tsConfig": {
"noImplicitAny": false,
"lib": [
"es2017",
"dom"
],
"types": [
"jest",
"node"
]
}
}
}
}
}