-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
87 lines (87 loc) · 2.96 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
{
"name": "@terrestris/base-util",
"version": "3.0.0",
"description": "A set of helper classes for working with strings, objects, etc.",
"module": "src/index.ts",
"main": "dist/index.js",
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"src",
"dist"
],
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"build": "npm run test:ci && npm run build:dist && npm run build:docs",
"build:dist": "tsc -p ./tsconfig.prod.json",
"build:docs": "npm run clean:docs && typedoc --out ./build/docs/ --exclude **/*.spec.** src/index.ts",
"clean:dist": "rimraf ./dist/*",
"clean:docs": "rimraf build/docs",
"coveralls": "cat coverage/lcov.info | coveralls",
"deploy": "NODE_DEBUG=gh-pages node tasks/update-gh-pages.js",
"lint": "eslint -c eslint.config.mjs src/**",
"prepublishOnly": "npm run build:dist",
"pretest": "npm run lint && npm run typecheck",
"release": "np --no-yarn && git push https://github.com/terrestris/base-util.git master --tags && npm run build:docs && npm run deploy",
"test": "jest -c jest.config.cjs",
"test:ci": "npm run test -- --ci --coverage",
"test:watch": "jest --watchAll -c jest.config.cjs",
"typecheck": "tsc --noEmit --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terrestris/base-util.git"
},
"author": "terrestris GmbH & Co. KG <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/terrestris/base-util/issues"
},
"homepage": "https://github.com/terrestris/base-util#readme",
"dependencies": {
"@ungap/url-search-params": "^0.2.2",
"lodash": "^4.17.21",
"loglevel": "^1.8.0",
"query-string": "^9.0.0",
"url-parse": "^1.5.10",
"validator": "^13.11.0"
},
"devDependencies": {
"@babel/plugin-proposal-function-bind": "^7.25.8",
"@babel/plugin-transform-modules-commonjs": "^7.25.7",
"@babel/plugin-transform-class-properties": "^7.25.7",
"@babel/preset-env": "^7.25.8",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@terrestris/eslint-config-typescript": "^7.0.0",
"@types/jest": "^29.5.7",
"@types/lodash": "^4.14.186",
"@types/node": "^22.2.0",
"@types/ungap__url-search-params": "^0.1.2",
"@types/url-parse": "^1.4.8",
"@types/url-search-params": "^1.1.0",
"@types/validator": "^13.11.9",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"coveralls": "^3.1.1",
"eslint": "^9.13.0",
"eslint-plugin-import": "^2.31.0",
"gh-pages": "^6.0.0",
"globals": "^15.11.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.1.2",
"jest-fetch-mock": "^3.0.3",
"np": "^10.0.0",
"rimraf": "^6.0.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.27.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"whatwg-fetch": "^3.6.2"
}
}