49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "raphael",
|
|
"version": "2.3.0",
|
|
"description": "JavaScript Vector Library",
|
|
"main": "raphael.min.js",
|
|
"author": {
|
|
"name": "Dmitry Baranovskiy"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Tomas Alabes",
|
|
"url": "https://github.com/tomasAlabes"
|
|
}
|
|
],
|
|
"dependencies": {
|
|
"eve-raphael": "0.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"qunitjs": "^1.0.0",
|
|
"webpack": "4.39.2",
|
|
"webpack-cli": "3.3.6"
|
|
},
|
|
"scripts": {
|
|
"start": "yarn build-all",
|
|
"dev": "webpack -d",
|
|
"build-src": "webpack -d --devtool none",
|
|
"build-no-deps": "webpack --env.noDeps -d --devtool none --output-filename raphael.no-deps.js",
|
|
"build-no-deps-min": "webpack --env.noDeps -p --output-filename raphael.no-deps.min.js",
|
|
"build-prod": "webpack -p --output-filename raphael.min.js",
|
|
"build-all": "yarn build-src && yarn build-no-deps && yarn build-no-deps-min && yarn build-prod",
|
|
"test": "echo \"Open dev/test/index.html with your browser\" && exit 1",
|
|
"prepublishOnly": "yarn build-all"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/DmitryBaranovskiy/raphael.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/DmitryBaranovskiy/raphael/issues"
|
|
},
|
|
"keywords": [
|
|
"svg",
|
|
"vml",
|
|
"javascript"
|
|
],
|
|
"homepage": "http://dmitrybaranovskiy.github.io/raphael/",
|
|
"license": "MIT"
|
|
}
|