This repository was archived by the owner on May 24, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
111 lines (111 loc) · 2.65 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@vivaxy/png",
"version": "1.3.0",
"description": "🖼A full-featured PNG decoder and encoder.",
"keywords": [
"png",
"vivaxy",
"image",
"parser",
"parse",
"decode",
"decoder",
"js-png",
"node-png",
"png-js",
"png-node",
"browser-png",
"png-browser",
"pngjs",
"png-parser",
"browser",
"node",
"full-featured"
],
"main": "lib/index.js",
"types": "lib/index.d.js",
"scripts": {
"build": "tsc",
"test": "jest",
"coverage": "jest --collect-coverage",
"release:beta": "npm run test && npm run build && standard-version --prerelease beta && npm publish --tag beta && git push --follow-tags",
"release": "npm run test && npm run build && standard-version && npm publish && git push --follow-tags",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vivaxy/png.git"
},
"author": "vivaxy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vivaxy/png/issues"
},
"homepage": "https://github.com/vivaxy/png#readme",
"lint-staged": {
"*.{js,ts,css,less,json,md,html,yml,yaml,pcss,jsx,tsx}": [
"prettier --write"
]
},
"jest": {
"preset": "ts-jest",
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.test.ts?(x)"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"testEnvironment": "<rootDir>/scripts/test/environment.js"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always",
"proseWrap": "always",
"htmlWhitespaceSensitivity": "css",
"endOfLine": "lf",
"overrides": [
{
"files": "*.{css,less,json,html,yml,yaml,pcss}",
"options": {
"singleQuote": false
}
}
]
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/fs-extra": "^9.0.0",
"@types/jest": "^26.0.0",
"@types/pako": "^1.0.1",
"fast-glob": "^3.1.1",
"fs-extra": "^9.0.0",
"husky": "5",
"jest": "^26.0.0",
"lint-staged": "^10.0.0",
"pinst": "^2.1.4",
"prettier": "^2.0.0",
"standard-version": "^9.0.0",
"ts-jest": "^26.0.0",
"typescript": "^4.0.0"
},
"dependencies": {
"pako": "^2.0.0"
}
}