SIGN IN SIGN UP
qrohlf / trianglify UNCLAIMED

Algorithmically generated triangle art

10094 0 1 JavaScript
2014-04-15 08:12:31 -07:00
{
"name": "trianglify",
"version": "4.0.0-next.0",
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.",
2019-11-12 14:45:38 -07:00
"main": "dist/trianglify.js",
"browser": "dist/trianglify.umd.js",
"module": "dist/trianglify.module.js",
2019-11-12 14:45:38 -07:00
"scripts": {
2020-05-03 16:53:59 -07:00
"lint": "standard",
2020-05-03 10:35:13 -07:00
"test": "jest",
"build": "rollup -c",
"dev": "rollup -c -w",
2020-05-03 20:20:52 -07:00
"ci": "npm run lint && npm run build && npm run test",
2019-11-12 14:45:38 -07:00
"postinstall": "node scripts/postinstall.js"
},
2014-04-15 08:12:31 -07:00
"dependencies": {
2019-11-12 15:20:14 -07:00
"chroma-js": "^2.1.0",
"delaunator": "^4.0.1"
2014-04-15 08:12:31 -07:00
},
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git://github.com/qrohlf/trianglify.git"
},
"keywords": [
"svg",
"canvas",
"visualization",
"pattern",
"lowpoly"
2014-04-15 08:12:31 -07:00
],
2020-05-03 16:53:59 -07:00
"standard": {
"parser": "babel-eslint",
"ignore": [
"dist",
"**/vendor/**"
]
},
2014-04-15 08:12:31 -07:00
"author": "Quinn Rohlf <qr@qrohlf.com>",
2015-11-04 16:18:51 -08:00
"license": "GPL-3.0",
2014-04-15 08:12:31 -07:00
"bugs": {
"url": "https://github.com/qrohlf/trianglify/issues"
},
2014-07-23 10:46:54 -07:00
"homepage": "https://github.com/qrohlf/trianglify",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
2020-05-03 16:53:59 -07:00
"babel-eslint": "^10.1.0",
2020-05-03 20:20:52 -07:00
"canvas": "^2.6.1",
2020-05-03 10:35:13 -07:00
"jest": "^25.5.4",
"rollup": "^2.7.2",
2020-05-03 16:53:59 -07:00
"rollup-plugin-terser": "^5.3.0",
"standard": "^14.3.3"
}
2014-04-15 08:12:31 -07:00
}