-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.34 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
{
"name": "@lunapaint/tga-codec",
"version": "0.1.0",
"description": "Decode tga files in web or node",
"main": "out-dist/public/tga.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": "mocha ./out-dev/test/**/*.js --timeout 20000 --diff false --enable-source-maps",
"coverage": "nyc npm run test",
"decode": "node ./scripts/decode-image.js",
"encode": "node ./scripts/encode-image.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lunapaint/tga-codec.git"
},
"keywords": [
"decoder",
"graphics",
"image",
"tga",
"targa"
],
"author": "Daniel Imms (http://www.github.com/Tyriar)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lunapaint/tga-codec/issues"
},
"homepage": "https://github.com/lunapaint/tga-codec#readme",
"devDependencies": {
"@lunapaint/png-codec": "^0.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.18.39",
"@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.1.3",
"nyc": "^15.1.0",
"typescript": "^4.5.4"
}
}