-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
106 lines (106 loc) · 2.94 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "generate-robotstxt",
"version": "8.0.3",
"description": "Awesome generator robots.txt",
"author": "itgalaxy <[email protected]>",
"contributors": [
{
"name": "Alexander Krasnoyarov",
"email": "[email protected]",
"url": "https://vk.com/sterling_archer"
}
],
"repository": {
"type": "https",
"url": "https://github.com/itgalaxy/generate-robotstxt"
},
"keywords": [
"robotstxt",
"robots.txt",
"generate",
"robots-txt",
"user-agent",
"police",
"allow",
"disallow",
"crawl-delay",
"robot",
"robots"
],
"bugs": {
"url": "https://github.com/itgalaxy/generate-robotstxt/issues"
},
"main": "dist/index.js",
"bin": "dist/cli.js",
"files": [
"dist"
],
"license": "MIT",
"engines": {
"node": ">= 10.13.0"
},
"dependencies": {
"cosmiconfig": "^6.0.0",
"fs-extra": "^9.0.0",
"ip-regex": "^4.1.0",
"is-absolute-url": "^3.0.3",
"meow": "^7.0.1",
"resolve-from": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-plugin-add-module-exports": "^1.0.2",
"eslint": "^7.0.0",
"eslint-plugin-ava": "^10.3.0",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-itgalaxy": "^126.0.0",
"eslint-plugin-jest": "^23.10.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-unicorn": "^19.0.1",
"execa": "^4.0.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"remark-cli": "^8.0.0",
"remark-preset-lint-itgalaxy": "^15.0.0",
"rimraf": "^3.0.2",
"standard-version": "^8.0.0",
"tempfile": "^3.0.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist --ignore /__tests__/",
"lint:prettier": "prettier --list-different '{src,__tests__}/**/*.{js,mjs,jsx,md,yml,yaml}' '*.{js,mjs,md,yml,yaml}' '!CHANGELOG.md'",
"lint:js": "eslint . --cache --report-unused-disable-directives --ignore-path .gitignore --ext '.js,.mjs,.jsx,md'",
"lint:md": "remark . -i .gitignore -f -q",
"lint": "npm-run-all -l -p 'lint:**'",
"prettier": "npm run lint:prettier -- --write",
"fix:js": "npm run lint:js -- --fix",
"fix": "npm-run-all -l prettier -p \"fix:**\"",
"pretest": "npm run lint",
"test:only": "jest",
"test:coverage": "jest --coverage",
"test": "npm run test:only",
"prepare": "npm run build",
"release": "standard-version"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/",
"helpers.js"
]
}
}