-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "bardcode",
"version": "2.2.0",
"description": "Draw 1-D barcodes to Canvases",
"files": ["dist"],
"main": "dist/bardcode.js",
"jsnext:main": "dist/bardcode.es.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Use meteor test-packages ./\" && exit 1",
"build": "rollup -f umd -c build/rollup.config.js -o dist/bardcode.js && cp dist/bardcode.js demos",
"buildes": "rollup -f es -c build/rollup.config.js -o dist/bardcode.es.js",
"minify": "uglifyjs dist/bardcode.js --compress --mangle -o dist/bardcode.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/froatsnook/bardcode"
},
"keywords": [
"barcode",
"codabar",
"code128",
"code 128",
"code39",
"code 39",
"ean",
"fim",
"itf",
"2of5",
"upc"
],
"author": "froatsnook <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/froatsnook/bardcode/issues"
},
"homepage": "https://github.com/froatsnook/bardcode",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.10.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-json": "^2.3.0",
"uglify-js": "^3.1.8"
}
}