-
Notifications
You must be signed in to change notification settings - Fork 238
/
package.json
87 lines (87 loc) · 2.99 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
{
"name": "autolinker",
"version": "4.0.0",
"description": "Utility to automatically link the URLs, email addresses, phone numbers, hashtags, and mentions (Twitter, Instagram) in a given block of text/HTML",
"main": "./dist/commonjs/index.js",
"typings": "./dist/commonjs/index.d.ts",
"module": "./dist/es2015/index.js",
"files": [
"dist"
],
"scripts": {
"build": "npm-run-all clean update-tld-regex build:src build:docs build:live-example",
"build:docs": "ts-node scripts/build-docs.ts",
"build:src": "ts-node scripts/build.ts",
"build:live-example": "webpack",
"clean": "rimraf dist",
"prepublishOnly": "npm-run-all build test",
"start": "webpack serve --open",
"test": "npm-run-all test:unit test:integration",
"test:unit": "node --require=ts-node/register node_modules/jasmine/bin/jasmine.js \"tests/**/*.spec.ts\"",
"test:unit:debug": "node --inspect-brk --require=ts-node/register node_modules/jasmine/bin/jasmine.js \"tests/**/*.spec.ts\"",
"test:integration": "ts-node scripts/test-integration.ts",
"update-tld-regex": "ts-node scripts/update-tld-regex.ts",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git://github.com/gregjacobs/Autolinker.js.git"
},
"keywords": [
"auto",
"link",
"autolink",
"url",
"urls",
"anchor"
],
"author": "Gregory Jacobs <greg@greg-jacobs.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gregjacobs/Autolinker.js/issues"
},
"homepage": "https://github.com/gregjacobs/Autolinker.js",
"dependencies": {
"tslib": "^2.3.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/cli-table": "^0.3.0",
"@types/dedent": "^0.7.0",
"@types/fs-extra": "^9.0.13",
"@types/jasmine": "^3.10.3",
"@types/jquery": "^3.5.5",
"@types/lodash": "^4.14.170",
"@types/node": "^16.11.26",
"@types/webpack": "^5.28.0",
"axios": "^0.26.0",
"cli-table": "^0.3.11",
"css-loader": "^6.6.0",
"dedent": "^0.7.0",
"fast-glob": "^3.2.11",
"fs-extra": "^10.0.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"jasmine": "^4.0.2",
"jsduck": "^1.1.2",
"lint-staged": "^12.3.4",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"npm": "^8.1.0",
"npm-run-all": "^4.1.5",
"prettier": "2.5.1",
"punycode": "^2.1.1",
"puppeteer": "^13.4.0",
"rimraf": "^3.0.2",
"rollup": "^2.52.2",
"style-loader": "^3.3.1",
"terser": "^5.11.0",
"ts-loader": "^9.2.3",
"ts-node": "^10.5.0",
"typescript": "^4.3.4",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}