-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.17 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
{
"name": "akismet",
"version": "2.0.7",
"keywords": [
"akismet",
"comment",
"spam"
],
"homepage": "https://github.com/oozcitak/akismet-js",
"description": "Akismet API client for node.js",
"author": "Ozgur Ozcitak <oozcitak@gmail.com>",
"contributors": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/oozcitak/akismet-js.git"
},
"bugs": {
"url": "https://github.com/oozcitak/akismet-js/issues"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"request": "2.x"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/request": "^2.48.8",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"tslint": "^6.1.3",
"typescript": "^4.6.3",
"dotenv": "16.0.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "/test/.*\\.tsx?$",
"testEnvironment": "node"
},
"scripts": {
"lint": "tslint -c tslint.json -t stylish 'src/**/*.{ts,tsx}'",
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "tsc && jest --coverage"
}
}