forked from joshmarinacci/node-pureimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 754 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 754 Bytes
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
{
"name": "pureimage",
"version": "0.1.3",
"description": "Pure JS image drawing API based on Canvas. Export to PNG streams.",
"author": {
"name": "Josh Marinacci",
"email": "joshua@marinacci.org",
"url": "http://joshondesign.com/"
},
"main": "./src/pureimage.js",
"repository": {
"type": "git",
"url": "https://github.com/joshmarinacci/node-pureimage.git"
},
"dependencies": {
"jpeg-js": "0.3.3",
"opentype.js": "^0.4.3",
"pngjs": "^3.3.1"
},
"devDependencies": {
"esdoc": "^1.0.3",
"esdoc-node": "^1.0.2",
"esdoc-standard-plugin": "^1.0.0",
"tape": "^4.6.3"
},
"scripts": {
"test": "node tests/runtests.js",
"docs": "./node_modules/.bin/esdoc"
},
"license": "MIT"
}