-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.4 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
{
"name": "fix-filenames",
"version": "2.0.1",
"description": "renames non ascii characters in files and directories",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"fix-filenames": "dist/index.js"
},
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"build-watch": "tsc --watch",
"eslint": "eslint --ext=ts,tsx ./src"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run prepublish"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --ext=ts,tsx --fix",
"git add"
]
},
"eslintConfig": {
"extends": "pureprofile",
"parserOptions": {
"project": "./tsconfig.json"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/zaggino/fix-filenames.git"
},
"author": "Martin Zagora <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zaggino/fix-filenames/issues"
},
"homepage": "https://github.com/zaggino/fix-filenames#readme",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"ffmetadata": "^1.6.0"
},
"devDependencies": {
"@types/node": "^12.12.17",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"eslint": "^6.7.2",
"eslint-config-pureprofile": "^3.2.1",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"typescript": "^3.7.3"
}
}