UNPKG

3.15 kBJSONView Raw
1{
2 "name": "generate-robotstxt",
3 "version": "4.0.0",
4 "description": "Awesome generator robots.txt",
5 "author": "itgalaxy <development@itgalaxy.company>",
6 "contributors": [
7 {
8 "name": "Alexander Krasnoyarov",
9 "email": "alexander.krasnoyarov@itgalaxy.company",
10 "url": "https://vk.com/sterling_archer"
11 }
12 ],
13 "repository": {
14 "type": "https",
15 "url": "https://github.com/itgalaxy/generate-robotstxt"
16 },
17 "keywords": [
18 "robotstxt",
19 "robots.txt",
20 "generate",
21 "robots-txt",
22 "user-agent",
23 "police"
24 ],
25 "bugs": {
26 "url": "https://github.com/itgalaxy/generate-robotstxt/issues"
27 },
28 "main": "dist/index.js",
29 "bin": "dist/cli.js",
30 "files": [
31 "dist"
32 ],
33 "license": "MIT",
34 "dependencies": {
35 "meow": "^3.3.0",
36 "resolve-from": "^2.0.0"
37 },
38 "devDependencies": {
39 "ava": "^0.16.0",
40 "babel-cli": "^6.10.0",
41 "babel-core": "^6.4.0",
42 "babel-preset-es2015": "^6.14.0",
43 "babel-preset-stage-0": "^6.5.0",
44 "babel-register": "^6.14.0",
45 "coveralls": "^2.11.6",
46 "npm-run-all": "^2.3.0",
47 "npmpub": "^3.1.0",
48 "eslint": "^3.4.0",
49 "eslint-plugin-ava": "^3.0.0",
50 "eslint-plugin-import": "^1.14.0",
51 "eslint-plugin-itgalaxy": "^13.0.0",
52 "eslint-plugin-jsx-a11y": "^2.2.0",
53 "eslint-plugin-lodash": "^1.10.0",
54 "eslint-plugin-node": "^2.0.0",
55 "eslint-plugin-promise": "^2.0.0",
56 "eslint-plugin-react": "^6.2.0",
57 "eslint-plugin-xo": "^0.5.0",
58 "execa": "^0.4.0",
59 "remark-cli": "^2.0.0",
60 "remark-lint": "^5.0.0",
61 "remark-preset-lint-itgalaxy": "^1.0.0",
62 "rimraf": "^2.5.2",
63 "nyc": "^7.0.0",
64 "tempfile": "^1.1.0",
65 "path-exists": "^3.0.0"
66 },
67 "scripts": {
68 "coveralls": "nyc report --reporter=text-lcov | coveralls",
69 "lint:eslint": "eslint . --ignore-path .gitignore",
70 "lint:remark": "remark . --ignore-path .gitignore --frail --quiet",
71 "lint": "npm-run-all -l --parallel lint:*",
72 "pretest": "npm run lint",
73 "ava": "nyc ava --verbose \"src/**/__tests__/*.js\"",
74 "test": "npm run ava",
75 "prebuild": "rimraf dist",
76 "build": "babel src --out-dir dist --ignore /__tests__/",
77 "prepublish": "npm run build",
78 "release": "npmpub"
79 },
80 "nyc": {
81 "exclude": [
82 "**/__tests__"
83 ]
84 },
85 "ava": {
86 "require": "babel-register",
87 "concurrency": 5,
88 "babel": "inherit"
89 },
90 "babel": {
91 "presets": [
92 "es2015",
93 "stage-0"
94 ]
95 },
96 "remarkConfig": {
97 "presets": [
98 "remark-preset-lint-itgalaxy"
99 ]
100 },
101 "eslintConfig": {
102 "rules": {
103 "node/shebang": "off"
104 },
105 "extends": [
106 "plugin:itgalaxy/ava",
107 "plugin:itgalaxy/esnext",
108 "plugin:itgalaxy/node"
109 ],
110 "root": true
111 }
112}