forked from bcruddy/express-url-cleaner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 875 Bytes
/
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
{
"name": "express-url-cleaner",
"version": "0.0.2",
"description": "express middleware for sanitizing urls",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/bcruddy/express-url-cleaner"
},
"author": "Brian Ruddy <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node -e 'require(\"./test/app\").listen(3001)'",
"test": "nyc -a --branches 100 --functions 100 --lines 100 --statements 100 --check-coverage --reporter html --exclude coverage --exclude test mocha test",
"pretest": "eslint lib/*.js test/*.js"
},
"devDependencies": {
"eslint": "^3.19.0",
"express": "^4.15.2",
"mocha": "^3.3.0",
"nyc": "^10.2.0",
"supertest": "^3.0.0"
},
"dependencies": {
"sanitizer": "^0.1.3"
}
}