-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 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
61
{
"name": "tor-detect-middleware",
"version": "1.0.2",
"description": "Tor detect middleware for Express",
"main": "./lib/index.js",
"scripts": {
"test": "jest --verbose ./**/*.test.js",
"test:coverage": "jest --verbose ./**/*.test.js --coverage",
"test:watch": "jest --verbose ./**/*.test.js --watchAll",
"lint": "standard",
"lint:fix": "standard --fix",
"dev": "nodemon ./lib/index.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"standard": {
"env": [
"jest"
],
"ignore": [
"/docs/**/*.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/UlisesGascon/tor-detect-middleware.git"
},
"keywords": [
"tor",
"blacklist",
"whitelist",
"express",
"middleware"
],
"author": "Ulises Gascon",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/UlisesGascon/tor-detect-middleware/issues"
},
"homepage": "https://github.com/UlisesGascon/tor-detect-middleware#readme",
"devDependencies": {
"husky": "^4.2.5",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"standard": "^14.3.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"dependencies": {
"debug": "^4.1.1",
"got": "^11.8.5",
"ip-regex": "^4.1.0",
"lowdb": "^1.0.0",
"snyk": "^1.1064.0"
},
"snyk": true
}