-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·44 lines (44 loc) · 1.25 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": "sherlockjs",
"version": "2.0.0",
"description": "Find usernames across over 75 social networks - NodeJS remake of sdushantha/sherlock",
"private": true,
"main": "index.js",
"bin": "index.js",
"scripts": {
"start": "node index.js",
"build": "pkg package.json -o sherlockjs",
"build-all": "pkg -t latest-linux-x64,latest-macos-x64,latest-win-x64 package.json --out-path dist/",
"build-ci": "pkg -d -t host package.json --out-path dist/",
"lint": "xo",
"test": "./sherlockjs -cfn krishpranav"
},
"pkg": {
"assets": [
"services.json"
]
},
"xo": {
"rules": {
"unicorn/no-process-exit": 0
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/krishpranav/sherlockjs.git"
},
"author": "Squared <squared@codebrew.fr> (https://squared.codebrew.fr)",
"license": "MIT",
"bugs": {
"url": "https://github.com/krishpranav/sherlockjs/issues"
},
"homepage": "https://github.com/krishpranav/sherlockjs#readme",
"dependencies": {
"arg": "^4.1.1",
"chalk": "^2.4.2"
},
"devDependencies": {
"pkg": "^4.4.0",
"xo": "^0.24.0"
}
}