paper.js/package.json

101 lines
2.3 KiB
JSON
Raw Normal View History

{
"name": "paper",
2016-07-09 11:17:22 -04:00
"version": "0.10.1",
2013-06-27 06:08:33 -04:00
"description": "The Swiss Army Knife of Vector Graphics Scripting",
"license": "MIT",
2013-07-01 09:50:39 -04:00
"homepage": "http://paperjs.org",
"repository": {
"type": "git",
"url": "git://github.com/paperjs/paper.js"
},
2015-08-21 11:36:48 -04:00
"bugs": "https://github.com/paperjs/paper.js/issues",
2013-06-27 06:08:33 -04:00
"contributors": [
2014-01-03 19:47:16 -05:00
"Jürg Lehni <juerg@scratchdisk.com> (http://scratchdisk.com)",
2013-06-27 06:08:33 -04:00
"Jonathan Puckey <jonathan@studiomoniker.com> (http://studiomoniker.com)"
],
"main": "dist/paper-full.js",
2016-01-08 21:35:32 -05:00
"scripts": {
"prepublish": "gulp build minify docs",
"precommit": "gulp jshint",
"prepush": "gulp test",
"build": "gulp build",
"dist": "gulp dist",
"docs": "gulp docs",
"load": "gulp load",
"jshint": "gulp jshint",
"test": "gulp test"
2016-01-08 21:35:32 -05:00
},
"files": [
"AUTHORS.md",
"dist/",
2015-08-21 11:36:48 -04:00
"examples/",
"LICENSE.txt",
"README.md"
],
"engines": {
2016-05-22 10:00:27 -04:00
"node": ">=4.0.0 <7.0.0"
},
"dependencies": {
"jsdom": "^9.4.0",
"source-map-support": "^0.4.0"
},
"optionalDependencies": {
2016-01-26 14:33:33 -05:00
"canvas": "^1.3.5"
},
2013-07-01 09:50:39 -04:00
"devDependencies": {
"acorn": "~0.5.0",
2016-07-09 10:10:29 -04:00
"del": "^2.2.1",
"extend": "^3.0.0",
2016-07-09 10:10:29 -04:00
"gulp": "^3.9.1",
2016-01-31 08:30:14 -05:00
"gulp-add-src": "^0.2.0",
2016-07-09 10:10:29 -04:00
"gulp-bump": "^2.2.0",
2016-01-25 05:35:15 -05:00
"gulp-cached": "^1.1.0",
"gulp-git-streamed": "^1.8.0",
2016-01-25 05:35:15 -05:00
"gulp-jshint": "^2.0.0",
"gulp-prepro": "^2.4.0",
2016-07-03 08:13:50 -04:00
"gulp-qunits": "^2.1.0",
"gulp-rename": "^1.2.2",
2016-01-31 08:30:14 -05:00
"gulp-shell": "^0.5.2",
2016-07-09 10:10:29 -04:00
"gulp-symlink": "^2.1.4",
"gulp-uglify": "^1.5.4",
"gulp-uncomment": "^0.3.0",
2016-07-09 10:10:29 -04:00
"gulp-util": "^3.0.7",
"gulp-webserver": "^0.9.1",
"gulp-whitespace": "^0.1.0",
"gulp-zip": "^3.2.0",
"husky": "^0.11.4",
"jshint": "^2.9.2",
2016-01-25 05:35:15 -05:00
"jshint-summary": "^0.4.0",
"merge-stream": "^1.0.0",
"prepro": "^2.4.0",
2016-07-09 10:10:29 -04:00
"qunitjs": "^1.23.0",
"require-dir": "^0.3.0",
2016-07-09 10:10:29 -04:00
"resemblejs": "^2.2.1",
"stats.js": "0.16.0",
2016-02-12 12:20:40 -05:00
"straps": "^1.9.0"
},
"browser": {
"canvas": false,
"jsdom": false,
"source-map-support": false,
"./dist/node/window.js": false,
"./dist/node/extend.js": false
},
"keywords": [
"vector",
"graphic",
"graphics",
"2d",
"geometry",
"bezier",
"curve",
"curves",
"path",
"paths",
"canvas",
"svg",
"paper",
"paper.js"
]
2013-05-05 22:34:23 -04:00
}