-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 970 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 970 Bytes
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
{
"name": "ts-spider",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:coverage": "nyc --extension .ts npm test && nyc report --reporter=html --reporter=lcov",
"test": "mocha --require ts-node/register test/spider.ts"
},
"author": "Mark Albert",
"license": "MIT",
"dependencies": {
"async": "^2.6.1",
"cheerio": "^1.0.0-rc.2",
"debug": "^4.1.0",
"node-fetch": "^2.2.1",
"@types/cheerio": "^0.22.9",
"@types/node-fetch": "^2.1.2"
},
"devDependencies": {
"@types/async": "^2.0.50",
"@types/chai": "^4.1.3",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.2",
"@types/node": "^10.12.3",
"chai": "^4.1.2",
"express": "^4.16.4",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslint": "^5.10.0",
"typedoc": "^0.13.0",
"typescript": "^3.1.6",
"uglify-es": "^3.3.9"
}
}