-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.34 KB
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
{
"name": "botium-crawler",
"version": "0.0.25",
"engines": {
"node": ">=10"
},
"bin": {
"botium-crawler-cli": "./bin/cli.js"
},
"scripts": {
"lint": "eslint \"./src/**/*.js\" index.js",
"lint:fix": "eslint --fix \"./src/**/*.js\" index.js",
"test": "npm i --no-save botium-core botium-connector-echo && mocha \"./test/**/*.spec.js\"",
"test:coverage": "npm i --no-save botium-core botium-connector-echo && nyc mocha \"./test/**/*.spec.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeforequity-at/botium-crawler.git"
},
"author": "Botium GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeforequity-at/botium-crawler/issues"
},
"homepage": "https://www.botium.ai",
"peerDependencies": {
"botium-core": "*"
},
"dependencies": {
"debug": "^4.3.2",
"flat": "^5.0.0",
"is-url": "^1.2.4",
"lodash": "^4.17.21",
"readline-sync": "^1.4.10",
"slugify": "^1.4.4",
"yargs": "^17.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.5.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0"
}
}