mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"title": "html2canvas",
|
|
"name": "html2canvas",
|
|
"description": "Screenshots with JavaScript",
|
|
"main": "dist/html2canvas.js",
|
|
"version": "1.0.0-alpha.1",
|
|
"author": {
|
|
"name": "Niklas von Hertzen",
|
|
"email": "niklasvh@gmail.com",
|
|
"url": "http://hertzen.com"
|
|
},
|
|
"engines": {
|
|
"node": ">=4.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:niklasvh/html2canvas.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/niklasvh/html2canvas/issues"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "6.24.1",
|
|
"babel-core": "6.25.0",
|
|
"babel-eslint": "7.2.3",
|
|
"babel-loader": "7.1.1",
|
|
"babel-plugin-transform-object-rest-spread": "6.23.0",
|
|
"babel-preset-es2015": "6.24.1",
|
|
"babel-preset-flow": "6.23.0",
|
|
"base64-arraybuffer": "0.1.5",
|
|
"eslint": "4.2.0",
|
|
"eslint-plugin-flowtype": "2.35.0",
|
|
"eslint-plugin-prettier": "2.1.2",
|
|
"flow-bin": "0.50.0",
|
|
"prettier": "1.5.3",
|
|
"rimraf": "2.6.1",
|
|
"webpack": "3.4.1"
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf dist/ && npm run build:npm && npm run build:browser",
|
|
"build:npm": "babel src/ -d dist/npm/",
|
|
"build:browser": "webpack",
|
|
"format": "prettier --single-quote --no-bracket-spacing --tab-width 4 --print-width 100 --write \"src/**/*.js\"",
|
|
"flow": "flow",
|
|
"lint": "eslint src/**",
|
|
"test": "npm run flow && npm run lint"
|
|
},
|
|
"homepage": "http://html2canvas.hertzen.com",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"punycode": "2.1.0"
|
|
}
|
|
}
|