-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 2.07 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
{
"name": "normalize-text",
"version": "2.5.0",
"description": "Provides a simple API to normalize texts, white-spaces, paragraphs & diacritics.",
"sideEffects": false,
"cdn": "dist/index.umd.min.js",
"main": "dist/index.js",
"types": "types/index.d.ts",
"unpkg": "dist/index.umd.min.js",
"module": "dist/index.esm.js",
"jsdelivr": "dist/index.umd.min.js",
"umd:main": "dist/index.umd.js",
"exports": {
".": [
{
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js",
"types": "./types/index.d.ts"
},
"./dist/index.js"
]
},
"scripts": {
"test": "yarn run test:lint && yarn run test:transpile && yarn run test:unit",
"test:transpile": "tsc --project ./tsconfig.test.json",
"test:unit": "jest \"(.+)\\.spec\\.js$\"",
"test:lint": "prettier src/**/*.ts --check",
"build": "yarn run build:transpile && yarn run build:bundle",
"build:transpile": "tsc --project ./tsconfig.build.json",
"build:bundle": "rollup --config rollup.config.js",
"prepublishOnly": "yarn run test && yarn run build"
},
"files": [
"dist/",
"types/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/VitorLuizC/normalize-text.git"
},
"keywords": [
"normalize-text",
"normalize",
"diacritics",
"whitespaces",
"white-spaces",
"accents",
"text",
"string",
"fp",
"functional",
"functional-programming"
],
"author": {
"url": "https://vitorluizc.github.io/",
"name": "Vitor Luiz Cavalcanti",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/VitorLuizC/normalize-text/issues"
},
"homepage": "https://github.com/VitorLuizC/normalize-text#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/jest": "^29.0.0",
"jest": "^29.0.1",
"prettier": "^2.7.1",
"rollup": "^2.78.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.8.2"
},
"dependencies": {
"@bitty/pipe": "^0.3.0"
}
}