-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "@lunapaint/png-codec",
"version": "0.2.0",
"description": "Decode and encode png files in web or node",
"main": "out-dist/public/png.js",
"typings": "typings/api.d.ts",
"scripts": {
"build": "tsc -b ./tsconfig.json",
"watch": "tsc -b -w ./tsconfig.json --preserveWatchOutput",
"lint": "eslint -c .eslintrc.json --max-warnings 0 --ext .ts src/ test/",
"test": "mocha ./out-dev/test/**/*.js --diff false --enable-source-maps",
"coverage": "nyc npm run test",
"encode": "node ./scripts/encode-image.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lunapaint/png-codec.git"
},
"keywords": [
"decoder",
"encoder",
"graphics",
"image",
"png"
],
"author": "Daniel Imms (http://www.github.com/Tyriar)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lunapaint/png-codec/issues"
},
"homepage": "https://github.com/lunapaint/png-codec#readme",
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"@types/pako": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.7.0",
"esm": "^3.2.25",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"typescript": "^4.5.4"
},
"dependencies": {
"pako": "^2.0.4"
}
}