forked from fiahfy/ico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
48
49
50
51
52
53
54
55
56
{
"name": "@igor-arkhipov/ico",
"description": "ICO file format parser and builder(fork)",
"version": "0.0.5",
"author": {
"name": "igor-arkhipov",
"url": "https://igor-arkhipov.github.io/"
},
"bugs": {
"url": "https://github.com/igor-arkhipov/ico/issues"
},
"dependencies": {
"pngjs": "^6.0.0"
},
"devDependencies": {
"@fiahfy/eslint-config": "^0.0.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@types/pngjs": "^3.4.2",
"eslint": "^7.18.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=8"
},
"files": [
"dist"
],
"homepage": "https://github.com/igor-arkhipov/ico",
"keywords": [
"builder",
"ico",
"parser"
],
"license": "MIT",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igor-arkhipov/ico.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint -f codeframe --ext .js,.ts --ignore-path .gitignore .",
"lint:prettier": "prettier -c --ignore-path .gitignore .",
"test": "npm run lint && jest"
},
"types": "dist/index.d.js"
}