-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
123 lines (123 loc) · 3.67 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
118
119
120
121
122
123
{
"name": "pngjs3",
"version": "6.1.1",
"description": "PNG encoder/decoder in pure JS, supporting any bit size & interlace, async & sync with full test suite.",
"contributors": [
"Max Gordon",
"Alexandre Paré",
"Gaurav Mali",
"Gusts Kaksis",
"Kuba Niegowski",
"Luke Page",
"Pietajan De Potter",
"Steven Sojka",
"liangzeng",
"Michael Vogt",
"Xin-Xin Wang",
"toriningen",
"Eugene Kulabuhov"
],
"homepage": "https://github.com/gforge/pngjs3",
"keywords": [
"PNG",
"decoder",
"encoder",
"js-png",
"node-png",
"parser",
"png",
"png-js",
"png-parse",
"pngjs"
],
"engines": {
"node": ">=18.0.0"
},
"main": "./dist/pngjs3.js",
"module": "./dist/pngjs3.es6.js",
"types": "./dist/index.d.ts",
"directories": {
"lib": "dist",
"example": "examples",
"test": "test"
},
"scripts": {
"build": "npm run compile && npm run build:flow && npm run build:typescript",
"build:flow": "flow-copy-source -v -i 'test/**' lib dist",
"build:typescript": "cp lib/index.d.ts dist/index.d.ts",
"build:clean": "rimraf dist",
"compile": "NODE_ENV=production rollup -c && NODE_ENV=development rollup -c",
"coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text-summary babel-tape-runner test/*-spec.js nolarge",
"monitor": "nodemon --watch lib --delay 2.5s --exec \"npm run build\"",
"test": "npm run test:clean && npm run lint && npm run test:tape | tap-dot && npm run test:browser",
"test:tape": "babel-tape-runner test/*-spec.js",
"test:browser": "babel-node test/run-compare",
"test:only": "npm run test:clean && babel-tape-runner test/*-spec.js",
"test:only:watch": "nodemon --exec 'npm run test:only' -e js,json",
"test:watch": "nodemon --exec 'npm run test' -e js,json",
"test:quickwatch": "nodemon --exec 'npm run test:only nolarge | tap-nyc' -e js,json",
"test:clean": "rimraf test/out/* && rimraf test/outsync/*",
"lint": "eslint lib",
"lint:fix": "eslint lib --fix"
},
"repository": {
"type": "git",
"url": "git://github.com/gforge/pngjs3.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/gforge/pngjs3/issues"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/eslint-parser": "^7.22.5",
"@babel/node": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-flow": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-flow": "^7.22.5",
"@babel/register": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.4.3",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.1.1",
"babel-tape-runner": "^3.0.0",
"buffer-equal": "1.0.1",
"codecov": "3.8.3",
"connect": "^3.7.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^8.0.3",
"flow-bin": "^0.209.0",
"flow-copy-source": "^2.0.9",
"imagediff": "^1.0.8",
"istanbul": "^0.4.5",
"nodemon": "^2.0.22",
"nyc": "^15.1.0",
"puppeteer": "20.7.2",
"rimraf": "^5.0.1",
"rollup": "^3.25.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"serve-static": "^1.15.0",
"tap-dot": "^2.0.0",
"tap-nyc": "^1.0.3",
"tape": "^5.6.3"
},
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"browserify-zlib": "^0.2.0",
"immer": "^10.0.2"
},
"packageManager": "[email protected]"
}