-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.82 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
{
"name": "little-scraper",
"version": "5.0.0",
"description": "Little Node Scraper with simple by powerful async flow control goodness",
"files": [
"index.js",
"README.md",
"src"
],
"scripts": {
"build": "cross-env NODE_ENV=production",
"dev": "nodemon index.dev.js --ext js",
"prestart": "npm run build",
"eslint": "eslint src/ --ext .js || true",
"eslint:fix": "eslint src/ --ext .js --fix || true",
"start": "node index.js",
"test": "jest",
"test:watch": "jest --watch",
"reinstall": "rimraf node_modules && yarn",
"release:patch": "npm version patch && git push --all && git push --tags && npm publish",
"release:minor": "npm version minor && git push --all && git push --tags && npm publish",
"release:major": "npm version major && git push --all && git push --tags && npm publish",
"release": "npm run build && np"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Restuta/little-scraper.git"
},
"keywords": [
"node",
"nodejs",
"scraper"
],
"author": "Anton Vynogradenko <[email protected]> (http://restuta.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Restuta/little-scraper/issues"
},
"homepage": "https://github.com/Restuta/little-scraper#readme",
"devDependencies": {
"cheerio": "^0.22.0",
"cross-env": "^3.1.4",
"eslint": "^4.15.0",
"eslint-plugin-prettier": "^2.4.0",
"express": "^4.16.2",
"jest": "^24.9.0",
"lodash": "^4.17.15",
"moment": "^2.10.6",
"nodemon": "^1.19.2",
"np": "^2.18.3",
"rimraf": "^2.6.0"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"bluebird": "^3.4.0",
"chalk": "^2.1.0",
"make-dir": "^1.1.0",
"ramda": "^0.25.0",
"request": "^2.48.0",
"rxjs": "^5.5.4",
"prettier": "^1.9.2"
}
}