Files
rough/package.json
2018-03-11 18:59:03 -07:00

31 lines
879 B
JSON

{
"name": "roughjs",
"version": "2.0.0",
"description": "Create graphics on HTML Canvas with a hand-drawn, sketchy, appearance.",
"main": "src/index.js",
"scripts": {
"build": "npm run clean && rollup src/index.js --o dist/rough.js --f iife --name \"rough\" && npm run minify",
"clean": "rm -rf dist/",
"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"
}
}