-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.9 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
83
84
85
86
87
88
89
{
"name": "adorn",
"version": "1.0.24",
"description": "Performant and powerful keyword matching and annotation for the DOM",
"keywords": [
"annotate",
"annotation",
"fasttext",
"corasick",
"keyword-extraction",
"search-in-text"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AlexJeffcott/adorn.git"
},
"author": "Alex Jeffcott",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexJeffcott/adorn/issues"
},
"engines": {
"node": ">=16.X.X",
"npm": ">=8.X.X",
"yarn": "USE_NPM_PLEASE"
},
"workspaces": [
"./packages/*"
],
"homepage": "https://github.com/AlexJeffcott/adorn#readme",
"scripts": {
"clean": "rm -rf node_modules packages/*/node_modules packages/*/build packages/*/dist packages/*/report && npm run clean --workspaces --if-present",
"update": "npm-check-updates -u && npm run update --workspaces --if-present",
"bootstrap": "npm i",
"bootstrap:ci": "npm ci --no-scripts",
"emit": "npm run emit --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"release:patch": "npm version patch --no-commit-hooks --workspaces && git add **/package*.json; npm version patch --no-commit-hooks --include-workspace-root -m \"[RELEASE]: %s\" --force",
"prepare": "husky install"
},
"devDependencies": {
"@actions/core": "^1.8.1",
"@actions/github": "^5.0.2",
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@fairfox/test-utils": "file:./packages/test-utils",
"@rtvision/mocha-esbuild": "^0.1.8",
"@skypack/package-check": "^0.2.2",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.2.0",
"@types/chai": "^4.3.1",
"@types/eslint": "^8.4.2",
"@types/lodash.throttle": "^4.1.7",
"@types/mocha": "^9.1.1",
"@types/mocha-each": "^2.0.0",
"@types/node": "^17.0.33",
"@types/prettier": "^2.6.1",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"@vitejs/plugin-react": "^1.3.2",
"@web/test-runner": "^0.13.27",
"@web/test-runner-playwright": "^0.8.8",
"chai": "^4.3.6",
"concurrently": "^7.1.0",
"dotenv": "^16.0.1",
"esbuild": "^0.14.39",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"jscpd": "^3.4.5",
"mocha": "^10.0.0",
"mocha-each": "^2.0.1",
"npm-check-updates": "^12.5.11",
"prettier": "^2.6.2",
"source-map-support": "^0.5.21",
"typescript": "^4.6.4",
"vite": "^2.9.9",
"vite-web-test-runner-plugin": "^0.1.0"
},
"dependencies": {
"@popperjs/core": "^2.11.5"
}
}