-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.37 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
{
"name": "express-robots-txt-workspace",
"description": "Express middleware to serve and generate robots.txt",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "yarn workspaces foreach run test",
"lint": "yarn workspaces foreach run lint",
"build": "yarn workspaces foreach run build"
},
"repository": {
"type": "git",
"url": "https://github.com/modosc/express-robots-txt"
},
"keywords": [
"express",
"robots",
"robots.txt",
"robots"
],
"author": "modosc (http://github.com/modosc)",
"contributors": [
"ashaffer (http://github.com/ashaffer)",
"Mathieu Maes (http://github.com/webberig"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/modosc/express-robots-txt/issues"
},
"homepage": "https://github.com/modosc/express-robots-txt",
"packageManager": "[email protected]",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"babel-plugin-add-module-exports": "^1.0.4",
"chai": "^4.3.7",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"express": "^4.18.2",
"jest": "29.5.0",
"jest-config": "29.5.0",
"supertest": "^6.3.3"
}
}