-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "meta-png",
"version": "1.0.6",
"description": "Write and read metadata in PNG files.",
"main": "dist/meta-png.umd.js",
"files": [
"dist",
"types/main.d.ts"
],
"repository": "https://github.com/lucach/meta-png.git",
"scripts": {
"test": "jest",
"test:coverage": "npm run test -- --ci --coverage",
"test:codecov": "npm run test:coverage && codecov",
"lint": "eslint src/*",
"build": "rollup --config",
"release": "release-it"
},
"keywords": [
"metadata",
"png"
],
"author": {
"name": "Luca Chiodini",
"email": "luca.chiodini@usi.ch"
},
"license": "ISC",
"types": "./types/main.d.ts",
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"babel-jest": "^26.6.3",
"codecov": "^3.8.1",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"exifr": "^6.0.0",
"jest": "^26.6.3",
"lodash": "^4.17.20",
"release-it": "^14.4.0",
"rollup": "^2.39.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.7.4"
}
}