forked from qrohlf/trianglify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "trianglify",
"version": "4.1.1",
"description": "Trianglify is a javascript library for generating colorful triangle meshes that can be used as SVG images and CSS backgrounds.",
"main": "dist/trianglify.js",
"scripts": {
"lint": "standard",
"test": "jest",
"build": "rollup -c",
"dev": "rollup -c -w",
"publish-beta": "npm run build && npm publish --tag next",
"ci": "npm run lint && npm run build && npm run test"
},
"dependencies": {
"chroma-js": "^2.1.0",
"delaunator": "^4.0.1",
"canvas": "^2.6.1"
},
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git://github.com/qrohlf/trianglify.git"
},
"keywords": [
"svg",
"canvas",
"visualization",
"pattern",
"lowpoly"
],
"standard": {
"parser": "babel-eslint",
"ignore": [
"dist",
"**/vendor/**"
]
},
"jest": {
"setupFiles": [
"jest-canvas-mock"
]
},
"author": "Quinn Rohlf <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/qrohlf/trianglify/issues"
},
"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",
"babel-eslint": "^10.1.0",
"jest": "^25.5.4",
"jest-canvas-mock": "^2.2.0",
"rollup": "^2.7.2",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-terser": "^5.3.0",
"standard": "^14.3.3"
}
}