forked from braintree/sanitize-url
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.86 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
{
"name": "@contaazul/sanitize-url",
"version": "5.1.0",
"description": "A url sanitizer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*",
"src/index.ts",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"prepack": "ca-pinst --disable",
"postpack": "ca-pinst --enable",
"preinstall": "yarn dlx only-allow yarn",
"build": "tsc && rollup -c",
"lint": "eslint --ext js,ts .",
"test": "jest"
},
"devDependencies": {
"@ca-tools-front/prettier-config": "^7.0.3",
"@ca-tools-front/release-it-config": "^7.0.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"chai": "^4.3.4",
"contaazul-pinst": "^1.0.2",
"eslint": "^8.6.0",
"eslint-config-braintree": "^6.0.0-typescript-prep-rc.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.5",
"prettier": "^2.8.4",
"release-it": "^14.14.3",
"rollup": "^2.66.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"jest": {
"testEnvironment": "jsdom",
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsconfig": "src/__tests__/tsconfig.json"
}
}
},
"publishConfig": {
"registry": "http://npm.prod.contaazul.local"
},
"packageManager": "[email protected]",
"selfEngines": {
"node": ">=18",
"yarn": ">=3.x"
},
"homepage": "https://github.com/ContaAzul/sanitize-url",
"author": {
"name": "ContaAzul",
"email": "[email protected]",
"url": "https://github.com/ContaAzul/sanitize-url"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ContaAzul/sanitize-url.git"
},
"bugs": {
"url": "https://github.com/ContaAzul/sanitize-url/issues"
},
"license": "MIT"
}