forked from parshap/node-sanitize-filename
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 859 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 859 Bytes
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
{
"name": "sanitize-filename",
"version": "1.7.0",
"description": "Sanitize a string for use as a filename",
"keywords": ["file", "name", "filename", "sanitize", "validate", "escape"],
"license": "WTFPL",
"author": "Manuel Reil",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:parshap/node-sanitize-filename.git"
},
"scripts": {
"test": "tape test.js",
"lint": "eslint index.js"
},
"dependencies": {
"truncate-utf8-bytes": "^1.0.0"
},
"devDependencies": {
"browserify": "^14.0.0",
"concat-stream": "^1.5.1",
"mktemp": "^0.4.0",
"tape": "^4.2.2",
"eslint": "^6.0.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^3.0.0"
},
"husky": {
"hooks": {
"pre-push": "yarn lint"
}
}
}