-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "@salesflare/social-profile-url-parser",
"version": "2.2.0",
"description": "Node library to parse social profile urls out of text.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --fix .",
"test": "lab -a @hapi/code -t 100"
},
"engines": {
"node": ">=14.16.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint && npm t"
}
},
"devDependencies": {
"@hapi/code": "^8.0.7",
"@hapi/lab": "^24.7.0",
"eslint": "^7.32.0",
"eslint-config-salesflare": "^5.2.0",
"eslint-plugin-node": "^11.1.0",
"ghooks": "^2.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Salesflare/social-profile-url-parser.git"
},
"keywords": [
"node",
"social",
"profile",
"url",
"parser"
],
"author": "Salesflare Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/Salesflare/social-profile-url-parser/issues"
},
"homepage": "https://github.com/Salesflare/social-profile-url-parser#readme",
"files": [
"."
]
}