-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.6 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "jswhat",
"version": "2.0.1",
"license": "MIT",
"description": "Identify anything from email addresses and IPs to crypto wallets. Works in Node, the browser and the command line",
"homepage": "https://github.com/apteryxxyz/jswhat",
"author": {
"name": "ApteryxXYZ",
"url": "https://apteryx.xyz/"
},
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"files": [
"dist"
],
"bin": {
"what": "./dist/what.js"
},
"packageManager": "[email protected]",
"scripts": {
"lint": "eslint {src,bin} --fix",
"format": "prettier src bin --write",
"test": "node test/identify.test",
"build:compile": "tsc && webpack",
"build:copy": "cp temp/bin/what.js dist/what.js && node scripts/replaceBinPaths",
"build:module": "gen-esm-wrapper . ./dist/index.mjs",
"build:clean": "rm -rf temp",
"build": "yarn build:compile && yarn build:copy && yarn build:clean && yarn build:module"
},
"repository": {
"type": "git",
"url": "https://github.com/apteryxxyz/jswhat"
},
"bugs": {
"url": "https://github.com/apteryxxyz/jswhat/issues"
},
"keywords": [
"what",
"jswhat",
"pywhat",
"cli",
"node",
"browser",
"identify",
"regex"
],
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@types/axios": "^0.14.0",
"@types/node": "^17.0.34",
"@types/web": "^0.0.67",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"babel-loader": "^8.2.5",
"bundle-declarations-webpack-plugin": "^3.1.0",
"eslint": "^8.23.1",
"eslint-config-apteryx": "^1.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"gen-esm-wrapper": "^1.1.3",
"prettier": "^2.7.1",
"prettier-config-apteryx": "^1.0.0",
"ts-config-apteryx": "^1.0.0",
"tslib": "^2.4.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"prettier": "prettier-config-apteryx",
"eslintConfig": {
"plugins": [
"prettier"
],
"extends": [
"plugin:prettier/recommended",
"apteryx",
"apteryx/typescript"
],
"ignorePatterns": [
"test/*",
"examples/*",
"scripts/*",
"dist/*",
"temp/*"
]
}
}