forked from lindell/JsBarcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.1 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
{
"name": "jsbarcode",
"version": "3.9.0",
"description": "JsBarcode is a customizable barcode generator with support for multiple barcode formats.",
"main": "./bin/JsBarcode.js",
"directories": {
"example": "example",
"test": "test",
"lib": "src",
"bin": "bin"
},
"scripts": {
"test": "gulp babel && node_modules/mocha/bin/mocha test/node/ -R spec",
"coveralls": "NODE_ENV=test YOURPACKAGE_COVERAGE=1 ./node_modules/.bin/mocha test/node/ --require blanket --reporter mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "./node_modules/.bin/mocha test/node/ -r blanket -R html-cov > test/coverage.html",
"build": "gulp compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lindell/JsBarcode.git"
},
"keywords": [
"barcode",
"canvas",
"code128",
"upc",
"ean",
"itf",
"msi",
"pharmacode"
],
"author": "Johan Lindell",
"license": "MIT",
"bugs": {
"url": "https://github.com/lindell/JsBarcode/issues"
},
"homepage": "https://github.com/lindell/JsBarcode#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "6.24.1",
"blanket": "^1.2.3",
"canvas": "^1.6.5",
"coveralls": "^2.11.6",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-bump": "^2.1.0",
"gulp-clean": "^0.3.2",
"gulp-concat": "^2.6.0",
"gulp-eslint": "^3.0.1",
"gulp-git": "^2.4.1",
"gulp-header": "^1.7.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.3",
"gzip-size": "^3.0.0",
"mocha": "^3.0.0",
"mocha-lcov-reporter": "^1.2.0",
"publish-release": "^1.2.0",
"request": "^2.72.0",
"run-sequence": "^1.1.5",
"webpack": "^2.5.1",
"webpack-stream": "^3.1.0",
"xmldom": "^0.1.27"
},
"typings": "./jsbarcode.d.ts",
"config": {
"blanket": {
"pattern": [
"JsBarcode.js",
"barcodes"
],
"data-cover-never": [
"GenericBarcode",
"node_modules"
]
}
}
}