-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.8 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
{
"name": "hlad",
"version": "0.2.0",
"description": "Hlad crawler is a small utility to crawl webpages for lunch menus and post them to an REST endpoint.",
"engines": {
"node": "~6.3.0",
"npm": "~3.10.0"
},
"scripts": {
"agent": "ts-node index.ts",
"agent:debug": "DEBUG=hlad-* npm run agent",
"compile": "tsc --outDir dist",
"lint": "tslint -c tslint.json src/**.ts",
"start": "npm run agent",
"test": "node scripts/test.js",
"test:ci": "npm run compile && npm run test && codecov"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:vire/hlad.git"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"modulePathIgnorePatterns": [
"<rootDir>/(dist|tmp|node_modules)/"
],
"testRegex": "/.*\\.spec.(ts)$"
},
"keywords": [
"hlad",
"rxjs",
"crawler",
"firebase",
"agemt"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"cheerio": "^0.22.0",
"debug": "^2.2.0",
"dotenv": "^2.0.0",
"firebase": "^2.4.1",
"isomorphic-fetch": "^2.2.1",
"jest": "^16.0.2",
"qs": "^6.3.0",
"ts-node": "^1.3.0"
},
"devDependencies": {
"@reactivex/rxjs": "^5.0.0-rc.1",
"@types/cheerio": "^0.17.30",
"@types/debug": "0.0.29",
"@types/dotenv": "^2.0.18",
"@types/firebase": "^2.4.30",
"@types/isomorphic-fetch": "0.0.31",
"@types/jest": "^15.1.32",
"@types/node": "^6.0.41",
"@types/qs": "^6.2.30",
"@types/sinon": "^1.16.31",
"cz-conventional-changelog": "^1.2.0",
"sinon": "^1.17.6",
"tslint": "^3.15.1",
"typescript": "^2.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}