forked from 418sec/node-sanitize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 781 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 781 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
{
"name": "sanitize",
"version": "2.1.0",
"description": "Input sanitizing library for node.js",
"main": "lib/sanitize.js",
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "https://github.com/pocketly/node-sanitize"
},
"keywords": [
"sanitization",
"user input",
"input filtering"
],
"author": "Adam Jaso <ajaso@pocketly.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/pocketly/node-sanitize/issues"
},
"homepage": "https://github.com/pocketly/node-sanitize",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"mocha": "^2.1.0",
"should": "^4.6.0"
},
"dependencies": {
"lodash": "^4.17.0",
"validator": "^3.33.0"
}
}