2014-04-15 08:12:31 -07:00
|
|
|
{
|
|
|
|
|
"name": "trianglify",
|
2020-04-25 11:12:10 -07:00
|
|
|
"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",
|
2020-04-25 11:12:10 -07:00
|
|
|
"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",
|
2020-04-25 11:12:10 -07:00
|
|
|
"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",
|
2020-04-25 11:12:10 -07:00
|
|
|
"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",
|
2020-04-25 11:12:10 -07:00
|
|
|
"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": {
|
2020-05-04 08:58:36 -07:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
2020-05-04 09:16:46 -07:00
|
|
|
"@babel/plugin-syntax-class-properties": "^7.8.3",
|
|
|
|
|
"@babel/preset-env": "^7.9.6",
|
2020-05-04 08:58:36 -07:00
|
|
|
"@rollup/plugin-babel": "^5.0.0",
|
2020-04-25 11:12:10 -07:00
|
|
|
"@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",
|
2020-04-25 11:12:10 -07:00
|
|
|
"rollup": "^2.7.2",
|
2020-05-03 16:53:59 -07:00
|
|
|
"rollup-plugin-terser": "^5.3.0",
|
|
|
|
|
"standard": "^14.3.3"
|
2020-04-25 11:12:10 -07:00
|
|
|
}
|
2014-04-15 08:12:31 -07:00
|
|
|
}
|