-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "png-async",
"version": "0.9.4",
"description": "A simple and non-blocking PNG encoder / decoder.",
"main": "./lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc --declaration",
"watch": "tsc -w --declaration",
"test": "mocha --exit test/*.js",
"clean": "rimraf lib/*",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/kanreisa/node-png-async.git"
},
"bugs": {
"url": "https://github.com/kanreisa/node-png-async/issues"
},
"keywords": [
"png",
"stream",
"async",
"non-blocking"
],
"author": "Yuki KAN <re@pixely.jp> (https://github.com/kanreisa)",
"contributors": [
"niegowski",
"brighthas",
"steelsojka"
],
"license": "MIT",
"homepage": "https://github.com/kanreisa/node-png-async",
"devDependencies": {
"@types/node": "^8.10.39",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"should": "^5.0.1",
"typescript": "^2.9.2"
}
}