1 | {
|
---|
2 | "name": "autolinker",
|
---|
3 | "version": "3.16.2",
|
---|
4 | "description": "Utility to automatically link the URLs, email addresses, phone numbers, hashtags, and mentions (Twitter, Instagram) in a given block of text/HTML",
|
---|
5 | "main": "./dist/commonjs/index.js",
|
---|
6 | "typings": "./dist/commonjs/index.d.ts",
|
---|
7 | "module": "./dist/es2015/index.js",
|
---|
8 | "files": [
|
---|
9 | "dist"
|
---|
10 | ],
|
---|
11 | "scripts": {
|
---|
12 | "build": "npm-run-all clean update-tld-regex build:src build:docs build:live-example",
|
---|
13 | "build:docs": "ts-node scripts/build-docs.ts",
|
---|
14 | "build:src": "ts-node scripts/build.ts",
|
---|
15 | "build:live-example": "webpack",
|
---|
16 | "clean": "rimraf dist",
|
---|
17 | "prepublishOnly": "npm-run-all build test",
|
---|
18 | "start": "webpack serve --open",
|
---|
19 | "test": "npm-run-all test:unit test:integration",
|
---|
20 | "test:unit": "node --require=ts-node/register node_modules/jasmine/bin/jasmine.js \"tests/**/*.spec.ts\"",
|
---|
21 | "test:integration": "ts-node scripts/test-integration.ts",
|
---|
22 | "update-tld-regex": "ts-node scripts/update-tld-regex.ts",
|
---|
23 | "prepare": "husky install"
|
---|
24 | },
|
---|
25 | "repository": {
|
---|
26 | "type": "git",
|
---|
27 | "url": "git://github.com/gregjacobs/Autolinker.js.git"
|
---|
28 | },
|
---|
29 | "keywords": [
|
---|
30 | "auto",
|
---|
31 | "link",
|
---|
32 | "autolink",
|
---|
33 | "url",
|
---|
34 | "urls",
|
---|
35 | "anchor"
|
---|
36 | ],
|
---|
37 | "author": "Gregory Jacobs <greg@greg-jacobs.com>",
|
---|
38 | "license": "MIT",
|
---|
39 | "bugs": {
|
---|
40 | "url": "https://github.com/gregjacobs/Autolinker.js/issues"
|
---|
41 | },
|
---|
42 | "homepage": "https://github.com/gregjacobs/Autolinker.js",
|
---|
43 | "dependencies": {
|
---|
44 | "tslib": "^2.3.0"
|
---|
45 | },
|
---|
46 | "devDependencies": {
|
---|
47 | "@rollup/plugin-commonjs": "^21.0.0",
|
---|
48 | "@rollup/plugin-node-resolve": "^13.1.3",
|
---|
49 | "@types/dedent": "^0.7.0",
|
---|
50 | "@types/fs-extra": "^9.0.13",
|
---|
51 | "@types/jasmine": "^3.10.3",
|
---|
52 | "@types/jquery": "^3.5.5",
|
---|
53 | "@types/lodash": "^4.14.170",
|
---|
54 | "@types/node": "^16.11.26",
|
---|
55 | "@types/webpack": "^5.28.0",
|
---|
56 | "axios": "^0.26.0",
|
---|
57 | "css-loader": "^6.6.0",
|
---|
58 | "dedent": "^0.7.0",
|
---|
59 | "fast-glob": "^3.2.11",
|
---|
60 | "fs-extra": "^10.0.1",
|
---|
61 | "html-webpack-plugin": "^5.5.0",
|
---|
62 | "husky": "^7.0.4",
|
---|
63 | "jasmine": "^4.0.2",
|
---|
64 | "jsduck": "^1.1.2",
|
---|
65 | "lint-staged": "^12.3.4",
|
---|
66 | "lodash": "^4.17.21",
|
---|
67 | "mkdirp": "^1.0.4",
|
---|
68 | "npm": "^8.1.0",
|
---|
69 | "npm-run-all": "^4.1.5",
|
---|
70 | "prettier": "2.5.1",
|
---|
71 | "punycode": "^2.1.1",
|
---|
72 | "puppeteer": "^13.4.0",
|
---|
73 | "rimraf": "^3.0.2",
|
---|
74 | "rollup": "^2.52.2",
|
---|
75 | "style-loader": "^3.3.1",
|
---|
76 | "terser": "^5.11.0",
|
---|
77 | "ts-loader": "^9.2.3",
|
---|
78 | "ts-node": "^10.5.0",
|
---|
79 | "typescript": "^4.3.4",
|
---|
80 | "webpack": "^5.69.1",
|
---|
81 | "webpack-cli": "^4.9.2",
|
---|
82 | "webpack-dev-server": "^4.7.4"
|
---|
83 | }
|
---|
84 | }
|
---|