-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "ration.js",
"author": "Austin K Smith",
"description": "100% Vanilla Javascript Rate Limiting / DDOS Protection Library",
"homepage": "https://github.com/austinksmith/Ration.js",
"version": "2.1.0",
"main": "build/ration.node.min.js",
"scripts": {
"build": "rm -rf ./build && webpack --config ./ration.webpack.config.js --display-error-details",
"test": "karma start --reporters html"
},
"license": "Artistic-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/austinksmith/Ration.js.git"
},
"keywords": [
"security",
"ddos",
"ddos protection",
"request limit",
"rate limit",
"load balancing",
"hardening",
"ddos",
"spam protection",
"performance",
"tarpit",
"network tarpitting"
],
"bugs": {
"url": "https://github.com/austinksmith/Ration.js/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^6.4.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"jasmine-core": "^2.5.2",
"karma": "^3.0.5",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-htmlfile-reporter": "^0.3",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^2.0.6",
"webpack": "^1.13.2"
},
"dependencies": {},
"directories": {
"test": "tests"
},
"collective": {}
}