-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 779 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 779 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
{
"name": "cleantalk",
"version": "1.0.2",
"description": "API for antispam service cleantalk.org. Invisible protection from spam, no captches, no puzzles, no animals and no math.",
"main": "src/Cleantalk.js",
"repository": {
"url": "https://github.com/westtrade/cleantalk.git",
"type": "git"
},
"scripts": {
"test": "ava",
"server:http": "node ./examples/http",
"server:express": "node ./examples/express",
"server:koa": "node ./examples/koa",
"update:docs": "jsdox --output ./docs ./src"
},
"author": "Popov Gennadiy <me@westtrade.tk>",
"license": "MIT",
"devDependencies": {
"ava": "^0.17.0",
"express": "^4.15.2",
"jsdox": "^0.4.10",
"koa": "^2.2.0"
},
"dependencies": {
"iconv-lite": "^0.4.15"
}
}