forked from qrohlf/trianglify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.68 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
67
68
69
70
71
72
{
"name": "trianglify",
"version": "0.4.0",
"description": "Trianglify is a javascript library for generating colorful triangle meshes that can be used as SVG images and CSS backgrounds.",
"main": "lib/trianglify.js",
"dependencies": {
"chroma-js": "^0.6.3",
"colors": "^1.1.2",
"delaunay-fast": "^1.0.1",
"jsdom": "^7.0.2",
"seedrandom": "^2.3.11"
},
"optionalDependencies": {
"canvas": "^1.3.0"
},
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git://github.com/qrohlf/trianglify.git"
},
"keywords": [
"svg",
"d3.js",
"visualization"
],
"author": "Quinn Rohlf <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/qrohlf/trianglify/issues"
},
"homepage": "https://github.com/qrohlf/trianglify",
"scripts": {
"test": "mocha test/test.js",
"start": "node gulpfile.js",
"postinstall": "node scripts/postinstall.js"
},
"browser": {
"jsdom": false,
"canvas": false
},
"devDependencies": {
"browserify": "^9.0.3",
"chai": "^2.1.0",
"del": "^0.1.1",
"gulp": "^3.8.6",
"gulp-bump": "^0.1.11",
"gulp-filter": "^1.0.2",
"gulp-git": "^0.5.2",
"gulp-jshint": "^1.7.1",
"gulp-mocha": "^1.1.1",
"gulp-rename": "^1.2.0",
"gulp-sourcemaps": "^1.5.0",
"gulp-tag-version": "^1.1.0",
"gulp-uglify": "^0.3.1",
"jshint-stylish": "^0.4.0",
"mocha": "^2.1.0",
"node-notifier": "^4.1.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0"
},
"npmName": "trianglify",
"npmFileMap": [
{
"basePath": "dist",
"files": [
"trianglify.min.js"
]
}
]
}