-
Notifications
You must be signed in to change notification settings - Fork 183
/
package.json
80 lines (80 loc) · 2.55 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
{
"name": "linkify",
"version": "4.1.4",
"description": "Intelligent link recognition, made easy",
"repository": {
"type": "git",
"url": "git+https://github.com/Hypercontext/linkifyjs.git"
},
"scripts": {
"build": "npm run build --workspaces",
"build:ci": "for dir in `ls packages` ; do cd packages/${dir} && npm run build && cd ../.. ; done",
"clean": "rm -rf dist",
"copy": "copyfiles -u 3 packages/*/dist/*.js packages/*/dist/*/LICENSE dist",
"copy:license": "copyfiles LICENSE dist",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"dist": "run-s clean prepack copy copy:license",
"dist:postpublish": "run-s clean copy copy:license",
"lint": "eslint .",
"format": "prettier --plugin-search-dir . --write .",
"prepack": "npm run prepack --workspaces",
"test": "mocha test/index.js",
"test:coverage": "nyc --reporter=lcov --reporter=text mocha test/index.js",
"test:ci": "run-s test:ci1 test:ci2",
"test:ci1": "karma start test/ci1.conf.js --single-run",
"test:ci2": "karma start test/ci2.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",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@nfrasser/simple-html-tokenizer": "==0.5.11-2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.4",
"chai": "^4.3.4",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.0",
"eslint": "^9.13.0",
"eslint-plugin-mocha": "^10.0.3",
"glob": "^8.0.1",
"globals": "^15.11.0",
"jquery": "^3.6.0",
"jsdom": "^16.5.0",
"karma": "^6.3.16",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-qunit": "^4.1.2",
"mocha": "^9.2.2",
"mocha-lcov-reporter": "^1.3.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"punycode": "^2.1.1",
"qunit": "^2.14.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"request": "^2.88.2",
"rollup": "^2.42.1",
"sinon": "^17.0.0",
"typescript": "^5.0.2"
},
"private": true,
"engines": {
"node": ">=8"
},
"workspaces": [
"./packages/linkifyjs",
"./packages/linkify-plugin-*",
"./packages/*"
]
}