-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 3.17 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
112
113
114
115
116
117
{
"name": "is-apng",
"version": "1.2.0",
"description": "Check if a Buffer/Uint8Array is a APNG (Animated PNG) image",
"license": "MIT",
"keywords": [
"apng",
"animated",
"portable",
"network",
"graphics",
"image",
"picture",
"photo",
"type",
"detect",
"check",
"is",
"exif",
"binary",
"buffer",
"uint8array"
],
"repository": {
"type": "git",
"url": "https://github.com/vHeemstra/is-apng.git"
},
"bugs": {
"url": "https://github.com/vHeemstra/is-apng/issues"
},
"author": {
"name": "Philip van Heemstra",
"email": "[email protected]",
"url": "https://github.com/vheemstra"
},
"maintainers": [
{
"name": "Philip van Heemstra",
"email": "[email protected]",
"url": "https://github.com/vheemstra"
}
],
"contributors": [
{
"name": "Philip van Heemstra",
"email": "[email protected]",
"url": "https://github.com/vheemstra"
},
{
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
}
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"./dist/"
],
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint ./src/",
"lint:fix": "eslint ./src/ --fix",
"build:watch": "cross-env NODE_ENV=development rollup --config rollup.config.js --sourcemap inline --watch",
"build:dev": "cross-env NODE_ENV=development rollup --config rollup.config.js --sourcemap inline",
"build": "cross-env NODE_ENV=production rollup --config rollup.config.js",
"test": "ava",
"server": "nodemon --watch ./src/serve.js --ext js ./src/serve.js",
"start": "concurrently --names \"ROLLUP,SERVER\" -c \"bgRed.bold,bgBlue.bold\" \"npm:build:watch\" \"npm:server\"",
"bump:patch": "npm version patch -m \"Patch version %s\"",
"bump:minor": "npm version minor -m \"Minor version %s\"",
"bump:major": "npm version major -m \"Major version %s\"",
"preversion": "npm run lint && npm run build && npm run test",
"version": "git add .",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"@types/connect-livereload": "^0.6.0",
"@types/express": "^4.17.15",
"@types/livereload": "^0.9.2",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"ava": "^5.1.0",
"concurrently": "^7.6.0",
"connect-livereload": "^0.6.1",
"cross-env": "^7.0.3",
"esbuild": "^0.16.16",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.18.2",
"livereload": "^0.9.3",
"nodemon": "^2.0.20",
"prettier": "^2.8.2",
"rollup": "^3.9.1",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-esbuild": "^5.0.0",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"publishConfig": {
"access": "public"
}
}