Files
rough/package.json
Preet Shihn 411666e2f7 bump version
2018-04-11 12:09:30 -07:00

37 lines
1.2 KiB
JSON

{
"name": "roughjs",
"version": "2.1.0",
"description": "Create graphics using HTML Canvas or SVG with a hand-drawn, sketchy, appearance.",
"main": "dist/rough.umd.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "npm run build-d && npm run build-umd",
"build-d": "rollup src/index.js --o dist/rough.js --f iife --name \"rough\" && npm run minify-d",
"minify-d": "babel-minify dist/rough.js -o dist/rough.min.js --mangle",
"build-umd": "rollup src/index.js --o dist/rough.umd.js --f umd --name \"rough\" && npm run minify-umd",
"minify-umd": "babel-minify dist/rough.umd.js -o dist/rough.umd.min.js --mangle",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pshihn/rough.git"
},
"keywords": [
"canvas",
"svg",
"graphics",
"sketchy",
"hand drawn",
"hand-drawn"
],
"author": "Preet Shihn <preetshihn@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pshihn/rough/issues"
},
"homepage": "https://roughjs.com",
"devDependencies": {
"babel-minify": "^0.3.0",
"rollup": "^0.56.3"
}
}