forked from pngjs/pngjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.5 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
{
"name": "pngjs",
"version": "3.3.3",
"description": "PNG encoder/decoder in pure JS, supporting any bit size & interlace, async & sync with full test suite.",
"contributors": [
"Alexandre Paré",
"Gaurav Mali",
"Gusts Kaksis",
"Kuba Niegowski",
"Luke Page",
"Pietajan De Potter",
"Steven Sojka",
"liangzeng",
"Michael Vogt",
"Xin-Xin Wang",
"toriningen",
"Eugene Kulabuhov"
],
"homepage": "https://github.com/lukeapage/pngjs",
"keywords": [
"PNG",
"decoder",
"encoder",
"js-png",
"node-png",
"parser",
"png",
"png-js",
"png-parse",
"pngjs"
],
"engines": {
"node": ">=4.0.0"
},
"main": "./lib/png.js",
"directories": {
"example": "examples"
},
"scripts": {
"coverage": "istanbul -- cover node_modules/tape/bin/tape test/*-spec.js nolarge",
"coverage-report": "npm run coverage && istanbul report html",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test": "npm run lint && tape test/*-spec.js | tap-dot && node test/run-compare",
"lint": "eslint lib"
},
"repository": {
"type": "git",
"url": "git://github.com/lukeapage/pngjs2.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lukeapage/pngjs2/issues"
},
"devDependencies": {
"buffer-equal": "1.0.0",
"connect": "^3.4.0",
"eslint": "^3.2.2",
"istanbul": "^0.4.4",
"phantomjs-prebuilt": "^2.1.7",
"serve-static": "^1.10.0",
"tap-dot": "^1.0.0",
"tape": "^4.0.2"
}
}