-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
114 lines (114 loc) · 3.46 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"author": "Muhammad Ubaid Raza <[email protected]>",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"jimp": "^0.16.1"
},
"description": "Simple & Fast Barcode decoder for Browser and Node.js",
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-object-rest-spread": "7.14.7",
"@babel/preset-env": "7.14.7",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rollup/plugin-commonjs": "^19.0.0",
"@types/babel__core": "^7.1.15",
"@types/babel__preset-env": "^7.9.2",
"@types/core-js": "2.5.4",
"@types/eslint": "^7.2.14",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^26.0.24",
"@types/node": "^16.0.1",
"@types/nodemon": "^1.19.1",
"@types/prettier": "^2.3.2",
"@types/rollup-plugin-json": "^3.0.2",
"@types/semantic-release": "^17.2.1",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"canvas": "^2.8.0",
"commitizen": "^4.2.4",
"core-js": "3.15.2",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-config": "^27.0.6",
"jest-environment-jsdom": "^27.0.6",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.9",
"prettier": "^2.3.2",
"rollup": "^2.52.8",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"semantic-release": "^17.4.4",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typedoc": "^0.21.2",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=6.0.0"
},
"files": [
"src",
"dist"
],
"homepage": "https://github.com/mubaidr/Javascript-Barcode-Reader#readme",
"keywords": [
"barcode",
"reader",
"scanner",
"javascript",
"node"
],
"license": "MIT",
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"git add"
]
},
"main": "dist/javascript-barcode-reader.umd.min.js",
"module": "dist/javascript-barcode-reader.es5.min.js",
"name": "javascript-barcode-reader",
"repository": {
"type": "git",
"url": "git://github.com/mubaidr/Javascript-Barcode-Reader.git"
},
"scripts": {
"build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --options typedoc.json",
"commit": "git-cz",
"deploy-docs": "ts-node tools/gh-pages-publish",
"lint": "eslint --ext .js,.ts {src,test}/* --fix && prettier --write \"{test,src,tools}/**/*.{js,ts}\"",
"prebuild": "rimraf dist",
"precommit": "lint-staged",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"semantic-release": "semantic-release",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
"start": "rollup -c rollup.config.ts -w",
"test": "jest --coverage",
"test:prod": "npm run lint && npm run test -- --no-cache",
"test:watch": "jest --watch"
},
"typings": "dist/types/src/index.d.ts",
"version": "0.6.9"
}