-
Notifications
You must be signed in to change notification settings - Fork 187
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.6 KB
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
{
"name": "linkify",
"type": "module",
"version": "4.3.3",
"description": "Intelligent link recognition, made easy",
"repository": {
"type": "git",
"url": "git+https://github.com/nfrasser/linkifyjs.git"
},
"scripts": {
"build": "npm run build --workspaces",
"build:test": "rollup -c rollup.config.js",
"build:ci": "run-s build build:test",
"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",
"pretest": "npm run build -- --silent",
"test": "mocha --recursive",
"test:coverage": "c8 --reporter=lcov --reporter=text mocha --recursive",
"test:ci": "run-s test:ci1 test:ci2",
"test:ci1": "karma start test/ci1.conf.cjs --single-run",
"test:ci2": "karma start test/ci2.conf.cjs --single-run",
"tlds": "node tasks/update-tlds.cjs"
},
"author": "Nick Frasser (https://nfrasser.com)",
"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",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@nfrasser/simple-html-tokenizer": "==0.5.11-4",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^1.0.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"c8": "^11.0.0",
"chai": "^6.2.2",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.0",
"eslint": "^10.4.0",
"eslint-plugin-mocha": "^11.3.0",
"globals": "^17.6.0",
"jquery": "^4.0.0",
"jsdom": "^29.1.1",
"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": "^11.7.6",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"punycode": "^2.1.1",
"qunit": "^2.14.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.60.4",
"sinon": "^22.0.0",
"typescript": "^6.0.3"
},
"private": true,
"engines": {
"node": ">=8"
},
"workspaces": [
"./packages/linkifyjs",
"./packages/linkify-plugin-*",
"./packages/*"
]
}