This repository has been archived by the owner on Feb 5, 2022. It is now read-only.
forked from nfrasser/linkifyjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.12 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
{
"name": "linkify",
"version": "3.0.5",
"description": "Intelligent link recognition, made easy",
"repository": {
"type": "git",
"url": "git+https://github.com/Hypercontext/linkifyjs.git"
},
"scripts": {
"clean": "rm -rf dist",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "npm run build --workspaces",
"build:ci": "for dir in `ls packages` ; do cd packages/${dir} && npm run build && cd ../.. ; done",
"copy": "copyfiles -f packages/*/dist/*.js LICENSE dist",
"dist": "run-s clean build copy",
"dist:ci": "run-s clean build:ci copy",
"lint": "eslint *.js packages/**/*.js test/**/*.js tasks/**/*.js",
"test": "nyc --reporter=lcov --reporter=text mocha test/index.js",
"test:ci": "karma start test/ci.conf.js --single-run",
"tlds": "node tasks/update-tlds.js"
},
"author": "Hypercontext",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/eslint-parser": "^7.13.10",
"@babel/eslint-plugin": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/register": "^7.13.8",
"@nfrasser/simple-html-tokenizer": "==0.5.11-2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"chai": "^4.3.4",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.0",
"eslint": "^8.3.0",
"eslint-plugin-mocha": "^9.0.0",
"glob": "^7.1.6",
"jquery": "^3.6.0",
"jsdom": "^11.12.0",
"karma": "^6.3.9",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-qunit": "^4.1.2",
"mocha": "^8.3.2",
"mocha-lcov-reporter": "^1.3.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"punycode": "^2.1.1",
"qunit": "^2.14.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"request": "^2.88.2",
"rollup": "^2.42.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.4.2"
},
"private": true,
"engines": {
"node": ">=8"
},
"workspaces": [
"./packages/linkifyjs",
"./packages/linkify-plugin-*/",
"./packages/*"
]
}