mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
Add bower.json
This commit is contained in:
parent
14ff672c6e
commit
0fd25f048d
1
.gitignore
vendored
1
.gitignore
vendored
@ -5,7 +5,6 @@
|
|||||||
/tests/flashcanvas.html
|
/tests/flashcanvas.html
|
||||||
/lib/
|
/lib/
|
||||||
/bin/
|
/bin/
|
||||||
/build/
|
|
||||||
image.jpg
|
image.jpg
|
||||||
/.project
|
/.project
|
||||||
/.settings/
|
/.settings/
|
||||||
|
@ -5,7 +5,7 @@ module.exports = function(grunt) {
|
|||||||
banner: '/*\n <%= pkg.title || pkg.name %> <%= pkg.version %>' +
|
banner: '/*\n <%= pkg.title || pkg.name %> <%= pkg.version %>' +
|
||||||
'<%= pkg.homepage ? " <" + pkg.homepage + ">" : "" %>' + '\n' +
|
'<%= pkg.homepage ? " <" + pkg.homepage + ">" : "" %>' + '\n' +
|
||||||
' Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>' +
|
' Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>' +
|
||||||
'\n\n Released under <%= _.pluck(pkg.licenses, "type").join(", ") %> License\n*/',
|
'\n\n Released under <%= _.pluck(pkg.licenses, "type").join(", ") %> License\n*/\n',
|
||||||
pre: '\n(function(window, document, undefined){\n\n',
|
pre: '\n(function(window, document, undefined){\n\n',
|
||||||
post: '\n})(window,document);'
|
post: '\n})(window,document);'
|
||||||
};
|
};
|
||||||
|
10
bower.json
Normal file
10
bower.json
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"name": "html2canvas",
|
||||||
|
"version": "0.4.1",
|
||||||
|
"description": "Screenshots with JavaScript",
|
||||||
|
"main": "build/html2canvas.js",
|
||||||
|
"ignore": [
|
||||||
|
"tests",
|
||||||
|
".travis.yml"
|
||||||
|
]
|
||||||
|
}
|
2868
build/html2canvas.js
Normal file
2868
build/html2canvas.js
Normal file
File diff suppressed because it is too large
Load Diff
8
build/html2canvas.min.js
vendored
Normal file
8
build/html2canvas.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
15
package.json
15
package.json
@ -11,13 +11,7 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=0.8.0"
|
"node": ">=0.8.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {},
|
||||||
"base64-arraybuffer": ">= 0.1.0",
|
|
||||||
"png-js": ">= 0.1.1",
|
|
||||||
"sync-webdriver": ">=0.1.1",
|
|
||||||
"express": "~3.2.3",
|
|
||||||
"baconjs": "~0.3.15"
|
|
||||||
},
|
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git@github.com:niklasvh/html2canvas.git"
|
"url": "git@github.com:niklasvh/html2canvas.git"
|
||||||
@ -33,7 +27,12 @@
|
|||||||
"grunt-contrib-qunit": "*",
|
"grunt-contrib-qunit": "*",
|
||||||
"grunt-contrib-watch": "~0.5.1",
|
"grunt-contrib-watch": "~0.5.1",
|
||||||
"googleapis": "~0.4.3",
|
"googleapis": "~0.4.3",
|
||||||
"jwt-sign": "~0.1.0"
|
"jwt-sign": "~0.1.0",
|
||||||
|
"base64-arraybuffer": ">= 0.1.0",
|
||||||
|
"png-js": ">= 0.1.1",
|
||||||
|
"sync-webdriver": ">=0.1.1",
|
||||||
|
"express": "~3.2.3",
|
||||||
|
"baconjs": "~0.3.15"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "grunt travis --verbose"
|
"test": "grunt travis --verbose"
|
||||||
|
Loading…
Reference in New Issue
Block a user