-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "ts-scraper",
"version": "1.0.3",
"description": "Scarp links present in the website recursively",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "NODE_PATH=./ node ./lib/index.js",
"test": "mocha ./lib/test/index.js",
"build": "tsc --declaration \"true\"",
"watch": "tsc --watch",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prepublishOnly": "npm run build && npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/pskd73/ts-scraper"
},
"author": "Pramod Kumar",
"license": "MIT",
"dependencies": {
"@types/jquery": "^2.0.41",
"@types/lodash": "^4.14.62",
"@types/node": "^7.0.12",
"base64-img": "^1.0.3",
"image-downloader": "^3.2.1",
"jquery": "^3.2.1",
"jsdom": "^9.12.0",
"lodash": "^4.17.4",
"parse-url": "^1.3.7",
"request": "^2.81.0",
"ts-jobrunner": "^1.0.1",
"uniqid": "^4.1.1",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@types/chai": "^3.5.1",
"@types/mocha": "^2.2.41",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"tslint": "^5.1.0",
"typescript": "^2.2.2"
}
}