-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 838 Bytes
/
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
{
"name": "@philipf5/xmp-sidecar",
"version": "1.0.1",
"description": "Reads and writes XMP sidecar files for image metadata",
"main": "XmpSidecar.js",
"author": "Philip Fulgham (https://www.philipfulgham.com)",
"repository": "git://github.com/philipf5/xmp-sidecar.git",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"files": [
"XmpSidecar.d.ts",
"XmpSidecar.js"
],
"dependencies": {
"xml2js": "0.4.22"
},
"devDependencies": {
"@types/jest": "24.0.23",
"@types/node": "12.12.7",
"@types/xml2js": "0.4.5",
"husky": "3.0.9",
"jest": "24.9.0",
"prettier": "1.19.1",
"pretty-quick": "2.0.1",
"ts-jest": "24.1.0",
"typescript": "3.7.2"
}
}