-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 1.96 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
91
92
93
{
"name": "@faviconkit/api",
"description": "Get and embed high quality Favicons from any web site with this simple, reliable API.",
"homepage": "https://faviconkit.com/?ref=npm",
"version": "0.0.0",
"main": "./src/api.js",
"author": {
"name": "Andreas Pizsa",
"url": "https://faviconkit.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/faviconkit/javascript-api.git"
},
"bugs": {
"url": "https://github.com/faviconkit/javascript-api/issues"
},
"keywords": [
"favicon",
"icon"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"md5": "^2.3.0",
"ms": "^2.1.3"
},
"devDependencies": {
"@andreaspizsa/eslint-config-xo": "^0.2.1",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@shopify/eslint-plugin": "^41.2.0",
"ava": "^4.1.0",
"c8": "^7.11.0",
"chance": "^1.1.8",
"dotenv": "^16.0.0",
"got": "^12.0.3",
"husky": "^7.0.4",
"parcel": "^2.4.1",
"semantic-release": "^19.0.2",
"standard-version": "^9.3.2",
"tsd": "^0.20.0",
"type-fest": "^2.12.2",
"typescript": "^4.6.3",
"xo": "^0.48.0"
},
"files": [
"src/*"
],
"scripts": {
"prepare": "husky install",
"prepublishOnly": "npm test",
"pretest": "xo && tsd",
"test": "c8 ava"
},
"license": "MIT",
"ava": {
"require": [
"dotenv/config"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"overrides": {
"@graphql-tools/url-loader": ">=7.4.3",
"underscore": ">1.12.0"
},
"tsd": {
"directory": "test"
},
"type": "module",
"types": "./src/api.d.ts",
"xo": {
"extends": [
"@andreaspizsa/eslint-config-xo",
"plugin:@shopify/node"
],
"rules": {
"@typescript-eslint/semi": 0
},
"semi": false,
"space": 2
}
}