-
Notifications
You must be signed in to change notification settings - Fork 215
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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
{
"name": "qrious",
"version": "2.3.0",
"description": "Library for QR code generation using canvas",
"homepage": "https://github.com/neocotic/qrious",
"bugs": {
"url": "https://github.com/neocotic/qrious/issues"
},
"author": {
"name": "Alasdair Mercer",
"email": "mercer.alasdair@gmail.com",
"url": "https://neocotic.com"
},
"license": "GPL-3.0",
"keywords": [
"qr",
"code",
"encode",
"canvas",
"image"
],
"repository": {
"type": "git",
"url": "https://github.com/neocotic/qrious.git"
},
"optionalDependencies": {
"canvas": "^1.6.5"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-runtime": "^6.23.0",
"eslint-config-notninja": "^0.1.1",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-rollup": "^1.0.1",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "~2.0.0",
"rollup-plugin-uglify": "^1.0.2",
"semver": "^5.3.0"
},
"browser": "dist/umd/qrious.js",
"main": "dist/cjs/qrious.js",
"module": "src/runtime/node.js",
"jsnext:main": "src/runtime/node.js",
"scripts": {
"build": "grunt build",
"test": "grunt test"
}
}