-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.45 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
{
"name": "country-ip-spoofer",
"version": "1.0.1",
"description": "Generates random ip that belongs to a desired country",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha --opts src/test/mocha.opts",
"build": "npm run lint && npm run buildDist",
"buildDist": "./node_modules/.bin/tsc",
"cover": "nyc --reporter=lcov --reporter=text-summary npm run test",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PruvoNet/countryIpSpoofer.git"
},
"keywords": [
"ip",
"spoof",
"spoofing",
"geo",
"geolocation",
"reverse",
"node",
"js",
"javascript",
"ts",
"typescript",
"country"
],
"author": "Regev Brody <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/PruvoNet/countryIpSpoofer/issues"
},
"homepage": "https://github.com/PruvoNet/countryIpSpoofer#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.3.1",
"@types/request": "^2.48.2",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"request": "^2.88.0",
"source-map-support": "^0.5.13",
"tempfile": "^3.0.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"csv": "^4.0.0"
},
"dependencies": {}
}