-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "indexnow-submitter",
"version": "1.3.1",
"description": "An IndexNow Submission module with caching and analytics",
"repository": {
"type": "git",
"url": "git+https://github.com/viv1/indexnow-submitter.git"
},
"homepage": "https://github.com/viv1/indexnow-submitter",
"main": "dist/index.js",
"bin": {
"indexnow-submitter": "dist/index.js"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.js",
"lint": "eslint . --ext .ts",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"docs": "typedoc --out docs src",
"prepublishOnly": "npm run build"
},
"keywords": [
"indexnow",
"seo",
"search-engine"
],
"author": "viv1",
"license": "MIT",
"dependencies": {
"axios": "^1.7.2",
"commander": "^8.0.0",
"dotenv": "^10.0.0",
"node-cache": "^5.1.2",
"winston": "^3.3.3",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^14.14.41",
"@types/xml2js": "^0.4.8",
"axios-mock-adapter": "^1.19.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.2",
"typescript": "^4.2.4"
}
}