-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.68 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "rangee",
"version": "2.0.0",
"description": "Serialize/deserialize Range in HTML.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"type": "commonjs",
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.mjs"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"files": [
"lib"
],
"scripts": {
"clean": "rimraf ./lib",
"benchmark": "npm run --prefix benchmark benchmark",
"build": "npm run clean && node esbuild.js && tsc",
"lint": "eslint . --ext .ts",
"test:unit": "npx jest --verbose --runInBand --passWithNoTests",
"test:unit:ci": "npx jest --ci --coverage",
"test:e2e": "npm run build && browserify -r ./lib/index.js:rangee > ./e2e/index.js && npx playwright test",
"prepack": "npm run build"
},
"release": {
"branches": [
"master"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/LukasRada/rangee.git"
},
"keywords": [
"range",
"serialize",
"deserialize",
"mark",
"highlight",
"store",
"HTML",
"DOM"
],
"author": "LukasRada",
"license": "MIT",
"bugs": {
"url": "https://github.com/LukasRada/rangee/issues"
},
"dependencies": {
"@types/pako": "^2.0.3",
"lz-string": "1.5.0",
"pako": "2.1.0"
},
"devDependencies": {
"@playwright/test": "^1.45.3",
"@types/jest": "29.5.12",
"@types/jsdom": "21.1.7",
"@types/node": "20.8.4",
"@typescript-eslint/eslint-plugin": "8.0.0",
"@typescript-eslint/parser": "8.0.0",
"browserify": "^17.0.0",
"esbuild": "^0.23.0",
"esbuild-node-externals": "^1.14.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-import-resolver-node": "0.3.9",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.1.1",
"jest": "29.7.0",
"jsdom": "24.1.1",
"move-file-cli": "3.0.0",
"prettier": "3.2.5",
"prettier-eslint": "16.3.0",
"rimraf": "6.0.1",
"tinybench": "2.9.0",
"ts-jest": "29.2.4",
"typescript": "5.5.4"
}
}