-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.28 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
{
"name": "nest-crawler",
"version": "1.9.0",
"description": "An easiest crawling and scraping module for NestJS",
"repository": "[email protected]:saltyshiomix/nest-crawler.git",
"author": "Yoshihide Shiono <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/saltyshiomix/nest-crawler",
"keywords": [
"crawler",
"scraper",
"nest",
"nestjs",
"nest.js",
"node",
"nodejs",
"node.js",
"typescript"
],
"bugs": {
"url": "https://github.com/saltyshiomix/nest-crawler/issues",
"email": "[email protected]"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "ava",
"build": "rimraf dist && tsc --project tsconfig.build.json",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@web-master/node-web-fetch": "^0.10.0"
},
"devDependencies": {
"@nestjs/common": "^6.8.5",
"@types/node": "^12.7.8",
"ava": "^2.4.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"rxjs": "^6.5.3",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"peerDependencies": {
"@nestjs/common": "^6"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}