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",
2020-11-01 10:54:20 -08:00
"version": "4.1.1",
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",
"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-08 11:58:44 -07:00
"publish-beta": "npm run build && npm publish --tag next",
2020-05-08 11:43:01 -07:00
"ci": "npm run lint && npm run build && npm run test"
2019-11-12 14:45:38 -07:00
},
2014-04-15 08:12:31 -07:00
"dependencies": {
2019-11-12 15:20:14 -07:00
"chroma-js": "^2.1.0",
2020-05-08 11:43:01 -07:00
"delaunator": "^4.0.1",
"canvas": "^2.6.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/**"
]
},
2020-05-13 09:29:13 -07:00
"jest": {
2020-10-26 15:42:26 -07:00
"setupFiles": [
"jest-canvas-mock"
]
2020-05-13 09:29:13 -07:00
},
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",
"@babel/plugin-syntax-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@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 10:35:13 -07:00
"jest": "^25.5.4",
2020-05-13 09:29:13 -07:00
"jest-canvas-mock": "^2.2.0",
"rollup": "^2.7.2",
2020-05-08 11:43:01 -07:00
"rollup-plugin-bundle-size": "^1.0.3",
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
}