paper.js/package.json

107 lines
2.5 KiB
JSON
Raw Normal View History

{
"name": "paper",
2018-12-03 08:26:23 -05:00
"version": "0.12.0",
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",
2017-04-21 06:54:15 -04:00
"url": "https://github.com/paperjs/paper.js"
},
2015-08-21 11:36:48 -04:00
"bugs": "https://github.com/paperjs/paper.js/issues",
2019-06-05 12:13:22 -04:00
"contributors": [
"Jürg Lehni <juerg@scratchdisk.com> (http://scratchdisk.com)",
"Jonathan Puckey <jonathan@studiomoniker.com> (http://studiomoniker.com)"
],
"main": "dist/paper-full.js",
"types": "dist/paper.d.ts",
2016-01-08 21:35:32 -05:00
"scripts": {
"build": "gulp build",
"dist": "gulp dist",
"zip": "gulp zip",
"docs": "gulp docs",
"load": "gulp load",
"jshint": "gulp jshint",
"test": "gulp test"
2016-01-08 21:35:32 -05:00
},
2019-06-05 12:13:22 -04:00
"files": [
"AUTHORS.md",
"CHANGELOG.md",
"dist/",
"examples/",
"LICENSE.txt",
"README.md"
],
"engines": {
2017-06-10 08:32:21 -04:00
"node": ">=4.0.0"
},
2019-06-05 12:13:22 -04:00
"husky": {
"hooks": {
"pre-commit": "gulp jshint --ensure-branch develop",
"pre-push": "gulp test --ensure-branch develop"
}
},
"browser": {
"canvas": false,
"jsdom": false,
"jsdom/lib/jsdom/living/generated/utils": false,
"source-map-support": false,
"./dist/node/self.js": false,
"./dist/node/extend.js": false
},
2013-07-01 09:50:39 -04:00
"devDependencies": {
"acorn": "~0.5.0",
2019-06-05 12:13:22 -04:00
"canvas": "^2.4.1",
"del": "^4.1.0",
2016-07-09 10:10:29 -04:00
"gulp": "^3.9.1",
2016-01-25 05:35:15 -05:00
"gulp-cached": "^1.1.0",
2018-10-17 11:38:42 -04:00
"gulp-git-streamed": "^2.8.1",
2019-06-05 12:13:22 -04:00
"gulp-jshint": "^2.1.0",
"gulp-json-editor": "^2.5.2",
"gulp-prepro": "^2.4.0",
2019-06-05 12:13:22 -04:00
"gulp-qunits": "^2.1.2",
"gulp-rename": "^1.4.0",
"gulp-shell": "^0.7.0",
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",
2019-06-05 12:13:22 -04:00
"husky": "^2.3.0",
"jsdom": "^15.1.1",
"jshint": "^2.10.2",
2016-01-25 05:35:15 -05:00
"jshint-summary": "^0.4.0",
2019-06-05 12:13:22 -04:00
"merge-stream": "^2.0.0",
"minimist": "^1.2.0",
"mustache": "^3.0.1",
"prepro": "^2.4.0",
2016-07-09 10:10:29 -04:00
"qunitjs": "^1.23.0",
2019-06-05 12:13:22 -04:00
"require-dir": "^1.2.0",
"resemblejs": "^3.1.0",
"run-sequence": "^2.2.1",
"source-map-support": "^0.5.12",
"stats.js": "0.17.0",
"straps": "^3.0.1",
"typescript": "^3.1.6"
},
2019-06-05 12:13:22 -04:00
"keywords": [
"vector",
"graphic",
"graphics",
"2d",
"geometry",
"bezier",
"curve",
"curves",
"path",
"paths",
"canvas",
"svg",
"paper",
"paper.js",
"paperjs"
]
2013-05-05 22:34:23 -04:00
}