-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "@aminzer/normalize-file-names",
"version": "1.1.1",
"description": "Utility for file name normalization",
"keywords": [
"normalize",
"normalization",
"file-name",
"file-naming",
"creation-date",
"creation-time"
],
"repository": {
"type": "git",
"url": "https://github.com/aminzer/normalize-file-names.git"
},
"license": "MIT",
"author": "aminzer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"build:watch": "npm run build -- --watch",
"husky:prepare": "husky install",
"lint": "eslint src/**/*.ts test/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"start": "node .",
"prepare": "run-s husky:prepare build",
"test": "jest"
},
"dependencies": {
"@aminzer/dir-diff": "^4.0.9",
"date-fns": "^2.25.0",
"dotenv": "^10.0.0",
"single-line-log": "^1.1.2"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"husky": "^7.0.2",
"jest": "^27.2.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=10.0.0"
}
}