-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.06 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
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"require": [
"@babel/register"
]
},
"dependencies": {
"es6-error": "^4.1.1",
"got": "^9.5.0",
"parse-url": "^5.0.0",
"roarr": "^2.12.0",
"robots-parser": "^2.1.1"
},
"description": "robots.txt agent with cache.",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"ava": "^1.0.1",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-transform-export-default-name": "^2.0.4",
"coveralls": "^3.0.2",
"eslint": "^5.11.0",
"eslint-config-canonical": "^15.0.1",
"flow-bin": "^0.89.0",
"flow-copy-source": "^2.0.2",
"gitdown": "^2.5.5",
"husky": "^1.2.1",
"nock": "^10.0.5",
"nyc": "^13.1.0",
"semantic-release": "^15.13.1"
},
"engines": {
"node": ">=8.0"
},
"husky": {
"hooks": {
"post-commit": "npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify",
"pre-commit": "npm run lint && npm run test && npm run build"
}
},
"keywords": [
"robots.txt",
"agent",
"cache"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "robots-agent",
"nyc": {
"all": true,
"include": [
"src/**/*.js"
],
"instrument": false,
"reporter": [
"html",
"text-summary"
],
"require": [
"@babel/register"
],
"silent": true,
"sourceMap": false
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/robots-agent"
},
"scripts": {
"build": "rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps && flow-copy-source src dist",
"create-readme": "gitdown ./.README/README.md --output-file ./README.md",
"lint": "eslint ./src ./test && flow",
"test": "NODE_ENV=test nyc ava --verbose --serial"
},
"version": "1.0.0"
}