-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.61 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
{
"name": "@danosaure/photo-timeline",
"version": "1.0.0",
"description": "Basic script to handle renaming of photo from camera and phone",
"main": "sort-files.js",
"scripts": {
"clean": "rimraf build",
"prebuild": "run-s clean eslint",
"build": "tsc",
"eslint": "eslint --fix \"src/**/*.ts\"",
"prettier": "prettier 'src/**/*.ts' --write",
"start": "node build/src/index.js",
"test": "ts-mocha \"src/**/*.unit.test.ts\"",
"check": "run-s eslint prettier",
"coverage": "nyc npm test",
"precoverage": "npm run check",
"coverage-report": "nyc report --reporter=text --reporter=text-summary"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danosaure/photo-timeline.git"
},
"engines": {
"node": ">=18.14.0"
},
"keywords": [
"photo",
"exif",
"timeline"
],
"author": {
"name": "Danosaure",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/danosaure/photo-timeline/issues"
},
"homepage": "https://github.com/danosaure/photo-timeline#readme",
"dependencies": {
"@types/yargs": "^17.0.22",
"babel-regenerator-runtime": "^6.5.0",
"bluebird": "~3.7.2",
"debug": "^4.3.4",
"dist-exiftool": "^10.53.0",
"exif": "^0.6.0",
"exifreader": "^4.9.1",
"file-type": "^18.2.0",
"lokijs": "~1.5.9",
"md5-file": "~5.0.0",
"read-chunk": "^4.0.3",
"yargs": "^17.6.2"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"@types/bluebird": "^3.5.38",
"@types/chai": "^4.3.4",
"@types/debug": "^4.1.7",
"@types/dirty-chai": "^2.0.2",
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"chai": "^4.3.7",
"dirty-chai": "^2.0.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"source-map-support": "^0.5.19",
"ts-mocha": "^10.0.0",
"typescript": "^4.9.5"
},
"nyc": {
"all": true,
"temp-dir": "./reports/nyc_output",
"report-dir": "./reports/coverage",
"check-coverage": false,
"include": [
"lib/**/*.ts",
"src/**/*.ts"
],
"exclude": [
"**/*.*.test.ts"
],
"reporter": [
"cobertura",
"lcov",
"html"
]
}
}