-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
60 lines (60 loc) · 1.66 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
{
"name": "javascript-qrcode",
"description": "Quick Response Code (QR-Code) Model 2 generator in plain javascript.",
"version": "1.0.7",
"repository": {
"type": "git",
"url": "git://github.com/siciarek/javascript-qrcode.git"
},
"bugs": {
"url": "https://github.com/siciarek/javascript-qrcode/issues"
},
"homepage": "https://github.com/siciarek/javascript-qrcode",
"scripts": {
"test": "grunt"
},
"bin": {
"qrcode": "./bin/qrcode"
},
"main": "./lib/qrcode.js",
"keywords": [
"qrcode",
"javascript"
],
"author": "Jacek Siciarek",
"license": "MIT",
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-internal": "~0.4.2",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-uglify": "~0.2.7",
"grunt-compare-size": "~0.4.0",
"grunt-contrib-qunit": "~0.3.0",
"grunt-contrib-jshint": "~0.7.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-jsdoc": "~0.4.2",
"karma-script-launcher": "~0.1.0",
"karma-html2js-preprocessor": "~0.1.0",
"karma-jasmine": "~0.1.3",
"karma-requirejs": "~0.2.0",
"karma-coffee-preprocessor": "~0.1.0",
"karma-phantomjs-launcher": "~0.1.0",
"karma": "~0.10.4",
"grunt-karma": "~0.6.2",
"qunitjs": "~1.12.0",
"karma-qunit": "~0.1.1",
"karma-coverage": "~0.1.2",
"karma-chrome-launcher": "~0.1.0",
"karma-firefox-launcher": "~0.1.0",
"karma-ie-launcher": "~0.1.1",
"karma-opera-launcher": "~0.1.0",
"karma-safari-launcher": "~0.1.1",
"grunt-contrib-nodeunit": "~0.2.2",
"grunt-shell": "~0.6.1",
"mkdirp": "0.3.5"
},
"dependencies": {
"commander": "~2.1.0"
}
}