-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
62 lines (62 loc) · 1.55 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
{
"name": "@arnabxd/bin-lookup",
"version": "2.0.0",
"description": "Search bin details from various bin database",
"main": "lib/index.js",
"scripts": {
"test": "rimraf lib && tsc --project tsconfig.json && ava",
"prepublishOnly": "rimraf lib && tsc --project tsconfig.build.json",
"build": "rimraf lib && tsc --project tsconfig.build.json",
"lint": "eslint ./src --max-warnings=0",
"format": "prettier --write src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArnabXD/bin-lookup.git"
},
"keywords": [
"bin"
],
"author": {
"name": "Arnab Paryali",
"url": "https://arnabxd.me"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ArnabXD/bin-lookup/issues"
},
"homepage": "https://github.com/ArnabXD/bin-lookup#readme",
"typings": "src/types.d.ts",
"dependencies": {
"axios": "^0.27.2",
"cheerio": "1.0.0-rc.12",
"emoji-flags": "^1.3.0"
},
"devDependencies": {
"@ava/typescript": "3.0.1",
"@types/cheerio": "^0.22.31",
"@types/emoji-flags": "1.3.0",
"@types/node": "16.11.43",
"@typescript-eslint/eslint-plugin": "5.30.6",
"@typescript-eslint/parser": "5.30.6",
"ava": "4.3.1",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"esm": "3.2.25",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"ts-node": "10.8.2",
"typescript": "4.7.4"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "lib/"
},
"extensions": [
"ts"
],
"compile": false
}
}
}