-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.56 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
{
"name": "fix-mod-date",
"version": "1.2.0",
"bin": "./dist/index.js",
"description": "read & update modification date of various file types",
"main": "./dist/index.js",
"scripts": {
"dev": "webpack --mode=development --watch --progress",
"build": "webpack --mode=production",
"test": "nyc --reporter=lcov mocha --timeout 10000",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublishOnly": "npm run build",
"lint": "npx eslint --ext js,jsx ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/didrip/fix-mod-date"
},
"bugs": {
"url": "https://github.com/didrip/fix-mod-date/issues"
},
"homepage": "https://github.com/didrip/fix-mod-date#readme",
"files": [
"/dist"
],
"keywords": [],
"author": "didrip <npm.mouthable@simplelogin.co>",
"license": "ISC",
"dependencies": {
"exifreader": "^3.12.2",
"minimist": "^1.2.5",
"moment": "^2.29.1",
"utimes": "^4.0.2"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/eslint-parser": "^7.11.5",
"@babel/plugin-syntax-top-level-await": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@jsdevtools/chai-exec": "^2.1.1",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"coveralls": "^3.1.0",
"eslint": "^7.10.0",
"mocha": "^8.1.3",
"node-loader": "^1.0.2",
"nyc": "^15.1.0",
"post-compile-webpack-plugin": "^0.1.2",
"shebang-loader": "0.0.1",
"webpack": "^5.0.0-rc.4",
"webpack-cli": "^3.3.12"
}
}