-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
55 lines (55 loc) · 1.45 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
{
"name": "url-knife",
"version": "4.1.6",
"description": "Extract and decompose (fuzzy) URLs (including emails, which are conceptually a part of URLs) in texts with robust patterns.",
"main": "src/entry.ts",
"scripts": {
"build": "NODE_OPTIONS=--openssl-legacy-provider gulp",
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patternknife/url-knife.git"
},
"keywords": [
"url parser",
"parse url",
"extract url",
"extract email",
"normalize url"
],
"author": "Andrew Kang",
"license": "MIT",
"bugs": {
"url": "https://github.com/patternknife/url-knife/issues"
},
"homepage": "https://github.com/patternknife/url-knife#readme",
"devDependencies": {
"@types/gulp": "^4.0.17",
"@types/mocha": "^10.0.10",
"babel-core": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.14.0",
"babel-register": "^6.14.0",
"chai": "^3.3.0",
"growl": "^1.10.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-mocha": "^7.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-util": "^3.0.7",
"lodash": "^4.17.11",
"minimatch": "^3.0.2",
"mocha": "^6.2.3",
"prettier": "^3.4.2",
"ts-loader": "^7.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"webpack": "^4.41.2",
"webpack-dev-server": "^3.9.0",
"webpack-stream": "^5.2.1"
},
"dependencies": {
"query-string": "^5.1.1"
}
}