Files
rough/package.json
Preet Shihn 833576cb6c .
2018-03-01 17:59:37 -08:00

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"
}
}