-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.59 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.59 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
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
{
"name": "@giladbeer/node-spider",
"version": "2.0.2",
"description": "Node.js web spider for site search",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"scripts": {
"build": "NODE_ENV=production yarn rollup --config rollup.config.ts --configPlugin typescript",
"lint": "yarn eslint .",
"lint:fix": "yarn lint --fix",
"type-check": "yarn tsc --noEmit",
"dev": "rollup --config -w",
"publish": "yarn build && npm publish --access public",
"check-circular-deps": "dpdm --exit-code circular:1 --tree false --warning false --ext \".js,.jsx,.ts,.tsx\" ./src/*",
"test:unit": "yarn jest ./src/utils",
"start:server": "http-server -p 8080 ./src/e2eTests/test-pages",
"stop:server": "pkill http-server",
"test:e2e": "yarn jest ./src/e2eTests --testTimeout=120000",
"test:e2e-CI": "concurrently \"yarn start:server\" \"wait-on http://localhost:8080 && yarn test:e2e && yarn stop:server\""
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giladbeer/node-spider.git"
},
"keywords": [],
"author": "giladbeer <gilad.beer@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/giladbeer/node-spider/issues"
},
"homepage": "https://github.com/giladbeer/node-spider#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-typescript": "^9.0.2",
"@types/jest": "^29.4.0",
"@types/jest-environment-puppeteer": "^5.0.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"algoliasearch": ">= 4.14.2 < 5",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"dpdm": "^3.10.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"http-server": "^14.1.1",
"jest": "^29.4.3",
"jest-puppeteer": "^9.0.0",
"prettier": "^2.7.1",
"puppeteer": ">= 19.2.2 < 20",
"puppeteer-cluster": ">= 0.23.0 < 1",
"rollup": "^3.3.0",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-license": "^3.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.0.5",
"tslib": "^2.4.1",
"typescript": "^4.8.4",
"wait-on": "^7.0.1"
},
"peerDependencies": {
"algoliasearch": ">= 4.14.2 < 5",
"puppeteer": ">= 19.2.2 < 20",
"puppeteer-cluster": ">= 0.23.0 < 1"
},
"dependencies": {}
}