This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.6 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
{
"name": "@orchidjs/diacritics",
"version": "1.0.0",
"description": "Diacritic insensitive string matching utility",
"main": "dist/umd/diacritics.js",
"browser": "dist/umd/diacritics.js",
"module": "dist/esm/diacritics.js",
"types": "dist/types/diacritics.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/orchidjs/diacritics.git"
},
"scripts": {
"pretest": "npm run build",
"test": "jest",
"test:coveralls": "npm run build && jest --coverage && cat ./coverage/lcov.info | coveralls",
"test:typescript": "tsc -p .config --noemit",
"build": "npx rollup -c .config/rollup.config.js",
"build:types": "tsc -p .config --emitDeclarationOnly"
},
"keywords": [
"diacritic",
"diacritics",
"matching",
"search",
"find",
"string",
"text"
],
"author": "",
"license": "Apache-2.0",
"files": [
"/dist",
"/lib"
],
"dependencies": {},
"browserslist": [
">= 0.5%",
"not dead",
"Chrome >= 60",
"Firefox >= 60",
"Firefox ESR",
"Edge >= 17",
"iOS >= 12",
"Safari >= 12",
"not Explorer <= 11"
],
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"coveralls": "^3.1.1",
"jest": "^28.1.3",
"rollup": "^2.77.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.7.4"
},
"jest": {
"verbose": true,
"testMatch": [
"**/test/**/*.js"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}