-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.16 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
{
"name": "@chlodalejandro/parsoid",
"description": "A userscript library for easily handling Parsoid DOM trees. ",
"version": "2.0.1-37ea110",
"main": "build/ParsoidDocument.module.js",
"browser": "build/ParsoidDocument.js",
"types": "build/ParsoidDocument.module.d.ts",
"files": [
"LICENSE",
"README.md",
"build/ParsoidDocument.js",
"build/ParsoidDocument.module.js",
"build/ParsoidDocument.module.d.ts"
],
"scripts": {
"build": "node scripts/build.js",
"test": "npm run build && jest",
"prepack": "npm run build",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ChlodAlejandro/parsoid-document.git"
},
"keywords": [
"mediawiki",
"parsoid",
"wikipedia",
"wikimedia"
],
"author": "Chlod Alejandro <chlod@chlod.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChlodAlejandro/parsoid-document/issues"
},
"homepage": "https://github.com/ChlodAlejandro/parsoid-document#readme",
"devDependencies": {
"@types/expect-puppeteer": "^5.0.2",
"@types/jest": "^29.5.4",
"@types/jest-environment-puppeteer": "^5.0.0",
"@types/puppeteer": "^5.4.5",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"axios": "^1.2.4",
"eslint": "^8.12.0",
"eslint-config-wikimedia": "^0.25.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-jsdoc": "^46.4.5",
"expect-puppeteer": "^9.0.0",
"http-server": "^14.1.0",
"jest": "^29.6.2",
"jest-puppeteer": "^9.0.0",
"puppeteer": "^21.0.1",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.1",
"typedoc-plugin-mdn-links": "^3.0.3",
"typedoc-plugin-missing-exports": "^2.0.1",
"typedoc-plugin-rename-defaults": "^0.6.5",
"types-mediawiki": "^1.2.0",
"typescript": "^4.5.5"
},
"overrides": {
"semver": "^7.5.4"
},
"browserslist": [
"cover 95% and supports fetch, not IE 11"
]
}