-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.21 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "contract-scraper",
"version": "1.0.8",
"description": "A customisable data scraper for the web based on JSON contracts",
"main": "dist/index",
"typings": "dist/index",
"directories": {
"test": "test"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"dist",
"node_modules",
"coverage",
"test",
"src/examples",
"src/tools/encoding.ts"
],
"reporter": [
"text",
"html",
"lcov"
],
"sourceMap": true,
"instrument": true,
"all": true,
"check-coverage": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90
},
"scripts": {
"test": "rm -rf coverage && nyc mocha",
"prepublishOnly": "npm run compile",
"compile": "tsc -p .",
"clean": "rm -rf dist",
"watch": "tsc -w -p .",
"lint": "tslint --project tslint.json",
"lint-fix": "tslint --fix --project tslint.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tamarasaurus/contract-scraper.git"
},
"keywords": [
"scraper",
"html",
"web",
"JSON"
],
"author": "Tamara Robichet",
"license": "MIT",
"bugs": {
"url": "https://github.com/tamarasaurus/contract-scraper/issues"
},
"homepage": "https://github.com/tamarasaurus/contract-scraper#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"cheerio-eq": "^1.0.1",
"glob": "^7.1.3",
"iconv": "^2.3.4",
"is-relative-url": "^3.0.0",
"jschardet": "^2.1.0",
"lodash.get": "^4.4.2",
"puppeteer": "^1.14.0",
"random-useragent": "^0.3.1",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/src"
],
"devDependencies": {
"@types/expect": "^1.20.4",
"@types/mocha": "^5.2.6",
"@types/cheerio": "^0.22.11",
"@types/iconv": "^2.1.16",
"@types/puppeteer": "^1.12.3",
"@types/sinon": "^7.0.11",
"nyc": "^14.0.0",
"sinon": "^7.3.2",
"source-map-support": "^0.5.12",
"tslint": "^5.16.0",
"mocha": "^6.1.4",
"ts-mocha": "^6.0.0",
"ts-node": "^8.0.3",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.4.1"
}
}