-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
47 lines (47 loc) · 1.65 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
{
"name": "jquery-ean13",
"version": "2.2.5",
"description": "A JavaScript library for the generation of EAN13-barcodes",
"repository": {
"type": "git",
"url": "https://github.com/joushx/jQuery.EAN13.git"
},
"keywords": [
"ean13",
"barcode",
"jquery",
"jquery-plugin",
"ecosystem:jquery"
],
"bugs": {
"url": "https://github.com/joushx/jQuery.EAN13/issues",
"email": "support@johannes-mittendorfer.com"
},
"license": "MIT",
"author": {
"name": "Johannes Mittendorfer",
"email": "kontakt@johannes-mittendorfer.com",
"url": "https://johannes-mittendorfer.com"
},
"main": "dist/ean13.js",
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "https://github.com/joushx/jQuery.EAN13.git"
},
"scripts": {
"test": "npm run lint && node-qunit-phantomjs tests/tests-jquery.html && node-qunit-phantomjs tests/tests-js.html",
"lint": "coffeelint src/ean13.coffee src/common.coffee src/jquery-ean13.coffee",
"build": "rm -rf dist && mkdir dist && cat src/common.coffee src/ean13.coffee > dist/ean13.coffee && cat src/common.coffee src/jquery-ean13.coffee > dist/jquery-ean13.coffee && coffee --compile --bare --no-header dist/ean13.coffee > dist/ean13.js && coffee --compile --bare --no-header dist/jquery-ean13.coffee > dist/jquery-ean13.js",
"minify": "uglifyjs dist/ean13.js -o dist/ean13.min.js && uglifyjs dist/jquery-ean13.js -o dist/jquery-ean13.min.js",
"prepublish": "npm run build && npm run minify"
},
"devDependencies": {
"node-qunit-phantomjs":"~1.4.0",
"coffeelint":"~1.15.7",
"coffee-script":"~1.10.0",
"uglify-js":"~2.7.0"
}
}