SIGN IN SIGN UP
qrohlf / trianglify UNCLAIMED

Algorithmically generated triangle art

0 0 1 JavaScript
2014-04-15 08:12:31 -07:00
{
"name": "trianglify",
2014-10-07 17:08:58 -07:00
"version": "0.1.5",
2014-04-15 08:12:31 -07:00
"description": "Trianglify is a javascript library for generating colorful triangle meshes that can be used as SVG images and CSS backgrounds.",
"main": "trianglify.js",
"dependencies": {
"chroma-js": "^0.6.3",
"delaunay-fast": "^1.0.1",
2015-02-28 12:21:47 -08:00
"jsdom": "^3.1.2",
2015-03-02 09:26:56 -08:00
"seedrandom": "^2.3.11"
2014-04-15 08:12:31 -07:00
},
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git://github.com/qrohlf/trianglify.git"
},
"keywords": [
"svg",
"d3.js",
"visualization"
],
"author": "Quinn Rohlf <qr@qrohlf.com>",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/qrohlf/trianglify/issues"
},
2014-07-23 10:46:54 -07:00
"homepage": "https://github.com/qrohlf/trianglify",
2014-10-08 09:39:04 -07:00
"scripts": {
2015-02-28 12:21:47 -08:00
"test": "mocha test/test.js",
"start": "node gulpfile.js"
},
"browser": {
"jsdom": false
2014-10-08 09:39:04 -07:00
},
2014-07-23 10:46:54 -07:00
"devDependencies": {
2015-03-02 09:26:56 -08:00
"browserify": "^9.0.3",
"chai": "^2.1.0",
"del": "^0.1.1",
2014-07-23 10:46:54 -07:00
"gulp": "^3.8.6",
2014-10-07 17:08:53 -07:00
"gulp-bump": "^0.1.11",
"gulp-filter": "^1.0.2",
"gulp-git": "^0.5.2",
2014-07-23 10:46:54 -07:00
"gulp-jshint": "^1.7.1",
"gulp-mocha": "^1.1.1",
"gulp-rename": "^1.2.0",
2015-02-28 12:21:47 -08:00
"gulp-sourcemaps": "^1.5.0",
2014-10-07 17:08:53 -07:00
"gulp-tag-version": "^1.1.0",
"gulp-uglify": "^0.3.1",
"jshint-stylish": "^0.4.0",
"mocha": "^2.1.0",
2015-02-28 12:21:47 -08:00
"node-notifier": "^4.1.2",
"vinyl-source-stream": "^1.0.0"
},
"npmName": "trianglify",
"npmFileMap": [
{
"basePath": "/",
"files": [
"trianglify.js",
"trianglify.min.js"
]
}
]
2014-04-15 08:12:31 -07:00
}