html2canvas/package.json

54 lines
1.5 KiB
JSON
Raw Normal View History

2012-11-25 22:59:31 +04:00
{
2013-08-04 17:42:12 +04:00
"title": "html2canvas",
"name": "html2canvas",
"description": "Screenshots with JavaScript",
2015-10-19 01:00:04 +03:00
"main": "dist/html2canvas.js",
2017-07-29 05:07:42 +03:00
"version": "1.0.0-alpha.1",
2013-08-04 17:42:12 +04:00
"author": {
"name": "Niklas von Hertzen",
"email": "niklasvh@gmail.com",
"url": "http://hertzen.com"
},
"engines": {
2015-12-06 20:01:18 +03:00
"node": ">=4.0.0"
2013-08-04 17:42:12 +04:00
},
"repository": {
"type": "git",
"url": "git@github.com:niklasvh/html2canvas.git"
},
"bugs": {
"url": "https://github.com/niklasvh/html2canvas/issues"
},
"devDependencies": {
2017-07-29 05:07:42 +03:00
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.1",
2017-08-01 17:36:51 +03:00
"babel-plugin-transform-object-rest-spread": "6.23.0",
2017-07-29 05:07:42 +03:00
"babel-preset-es2015": "6.24.1",
"babel-preset-flow": "6.23.0",
"base64-arraybuffer": "0.1.5",
"eslint": "4.2.0",
2017-08-01 13:51:59 +03:00
"eslint-plugin-flowtype": "2.35.0",
"eslint-plugin-prettier": "2.1.2",
2017-07-29 05:07:42 +03:00
"flow-bin": "0.50.0",
"prettier": "1.5.3",
"rimraf": "2.6.1",
"webpack": "3.4.1"
2013-08-04 17:42:12 +04:00
},
"scripts": {
2017-08-03 17:03:05 +03:00
"build": "rimraf dist/ && npm run build:npm && npm run build:browser",
"build:npm": "babel src/ -d dist/npm/",
2017-07-29 05:07:42 +03:00
"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"
2013-08-04 17:42:12 +04:00
},
"homepage": "http://html2canvas.hertzen.com",
2017-07-29 05:07:42 +03:00
"license": "MIT",
"dependencies": {
"punycode": "2.1.0"
}
2013-05-29 18:53:47 +04:00
}