-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
54 lines (54 loc) · 1.24 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
{
"author": {
"email": "[email protected]",
"name": "Prefinem",
"url": "https://prefinem.com"
},
"dependencies": {
"bencode": "^0.7.0",
"bitfield": "^1.1.2",
"bittorrent-tracker": "^9.10.1",
"elasticsearch": "^15.1.1",
"knex": "^2.4.0",
"mysql": "^2.16.0",
"pm2": "^3.1.3",
"sqlite3": "^4.0.2"
},
"description": "DHT Torrent Scraper",
"devDependencies": {
"eslint": "^5.6.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-jest": "^22.1.3",
"husky": "^1.0.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn staged"
}
},
"keywords": [],
"license": "MIT",
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --config ./.prettierrc.json --write",
"jest --bail --findRelatedTests",
"git add"
]
},
"name": "alphareign",
"scripts": {
"clean": "yarn lint && yarn prettify",
"lint": "eslint src/*.js --fix",
"loader": "node ./loader.js",
"migrate": "./node_modules/.bin/knex migrate:latest",
"pm2": "./node_modules/.bin/pm2 start ecosystem.config.js",
"prettify": "prettier --config ./.prettierrc.json --write \"src/*.js\"",
"scraper": "node ./scraper.js",
"staged": "lint-staged",
"upgrade": "yarn migrate"
},
"version": "2.0.0"
}