-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
67 lines (67 loc) · 1.83 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
{
"name": "js-crawler",
"version": "1.0.1",
"description": "Web crawler for Node.js",
"main": "compiled/crawler.js",
"files": [
"compiled/crawler.*",
"compiled/src",
"examples"
],
"dependencies": {
"request": "~2.87.0",
"underscore": "~1.8.3"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/es6-promise": "^3.3.0",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.18",
"@types/underscore": "^1.8.7",
"@types/webpack-env": "^1.13.5",
"awesome-typescript-loader": "^3.4.1",
"chai": "^4.1.2",
"express": "^4.16.2",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^0.1.7",
"karma-html-reporter": "^0.2.7",
"karma-mocha": "^1.3.0",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^2.0.9",
"mocha": "^5.1.0",
"sinon": "^5.0.7",
"source-map-loader": "^0.2.3",
"typescript": "^2.8.1",
"webpack": "^4.1.0"
},
"scripts": {
"build": "tsc -p .",
"lint": "tslint -c tslint.json crawler.ts src/*.ts spec/*.ts",
"test": "karma start",
"test:tdd": "karma start --tdd",
"e2e": "npm run build && ./node_modules/mocha/bin/mocha e2e/crawler.spec.js --color --check-leaks",
"test2": "npm run build && ./node_modules/mocha/bin/mocha compiled/spec/*.spec.js --color",
"test:packaging": "./test_packaging.sh",
"watch": "tsc -p . --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/antivanov/js-crawler"
},
"keywords": [
"web-crawler",
"crawler",
"scraping",
"website-crawler",
"crawling",
"web-bot"
],
"author": "Anton Ivanov, anton.al.ivanov@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/antivanov/js-crawler/issues"
},
"homepage": "https://github.com/antivanov/js-crawler"
}