-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
32 lines (32 loc) · 871 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
28
29
30
31
32
{
"name": "akismet-api",
"version": "6.0.0",
"description": "Nodejs bindings to the Akismet (https://akismet.com) spam detection service",
"main": "lib/akismet.js",
"typings": "akismet-api.d.ts",
"dependencies": {
"bluebird": "^3.1.1",
"superagent": "^8.0.0"
},
"devDependencies": {
"chai": "^4.0.1",
"check-dts": "^0.7.2",
"mocha": "^10.0.0",
"nock": "^13.0.0",
"prettier": "^3.0.2"
},
"scripts": {
"test": "prettier --check '**/*.js' && mocha test/*.spec.js && check-dts akismet-api.d.ts",
"prettier": "prettier --write '**/*.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/chrisfosterelli/akismet-api.git"
},
"keywords": ["akismet", "spam", "detection"],
"author": "Chris Foster <chris.james.foster@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
}
}