mirror of
https://github.com/rough-stuff/rough.git
synced 2026-01-15 01:18:26 -05:00
31 lines
840 B
JSON
31 lines
840 B
JSON
{
|
|
"name": "roughjs",
|
|
"version": "1.0.0",
|
|
"description": "Create graphics on HTML Canvas with a hand-drawn, sketchy, appearance.",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"build": "rollup src/index.js --o dist/rough.js --f iife --name \"RoughCanvas\" && npm run minify",
|
|
"minify": "babel-minify --mangle dist/rough.js >> dist/rough.min.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/pshihn/rough.git"
|
|
},
|
|
"keywords": [
|
|
"canvas",
|
|
"sketchy",
|
|
"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"
|
|
}
|
|
}
|