-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 1.96 KB
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
{
"name": "scrapjob",
"version": "0.0.0",
"description": "Get job offers from your favorite company",
"main": "dist/bots.js",
"scripts": {
"commit": "git-cz",
"lint": "xo",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"test": "nyc ava --verbose",
"prebuild": "rimraf dist",
"build": "babel --copy-files --out-dir dist --ignore *.test.js src",
"validate": "npm-run-all --parallel lint test build",
"release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/ScrapThemAll/scrapjob-bot.git"
},
"keywords": [
"bots",
"jobs",
"job board"
],
"files": [
"dist"
],
"author": "Phung Eric <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ScrapThemAll/scrapjob-bot/issues"
},
"homepage": "https://github.com/ScrapThemAll/scrapjob#readme",
"devDependencies": {
"ava": "0.16.0",
"babel-cli": "6.14.0",
"babel-plugin-transform-async-to-generator": "6.8.0",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "6.14.0",
"babel-register": "6.14.0",
"codecov": "1.0.1",
"commitizen": "2.8.6",
"cz-conventional-changelog": "1.2.0",
"ghooks": "1.3.2",
"npm-run-all": "3.1.0",
"nyc": "8.1.0",
"rimraf": "2.5.4",
"validate-commit-msg": "2.8.0",
"xo": "0.16.0",
"semantic-release": "^4.3.5"
},
"nyc": {
"reporter": [
"text",
"lcov"
],
"include": [
"src"
]
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-async-to-generator"
]
},
"ava": {
"require": [
"./test/helpers/setup.js"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run validate",
"commit-msg": "validate-commit-msg"
}
},
"dependencies": {
"cheerio": "0.22.0",
"got": "6.3.0"
}
}