UNPKG

1.94 kBJSONView Raw
1{
2 "name": "normalize-diacritics",
3 "version": "2.8.0",
4 "description": "Remove accents/ diacritics in string",
5 "keywords": [
6 "diacritic",
7 "diacritics",
8 "motss",
9 "normalize",
10 "normalize-diacritics",
11 "npm"
12 ],
13 "homepage": "https://github.com/motss/normalize-diacritics",
14 "repository": {
15 "type": "git",
16 "url": "git@github.com:motss/normalize-diacritics.git"
17 },
18 "license": "MIT",
19 "author": "Rong Sen Ng <wes.ngrongsen@gmail.com> (https://github.com/motss)",
20 "files": [
21 "dist/*.*js.map",
22 "dist/*.*js",
23 "dist/*.d.ts.map",
24 "dist/*.d.ts"
25 ],
26 "sideEffects": false,
27 "main": "./dist/index",
28 "module": "./dist/index.mjs",
29 "typings": "./dist/index.d.ts",
30 "scripts": {
31 "build": "npm run clean && npm run rollup",
32 "build:test": "npm run clean && tsc -p ./tsconfig.test.json",
33 "clean": "shx rm -rf dist/",
34 "jest": "jest --config ./.jestrc.json",
35 "lint": "tslint --project tsconfig.json --config tslint.prod.json --format stylish",
36 "lint:debug": "tslint --project tsconfig.json --config tslint.json --format stylish",
37 "prepublishOnly": "npm run lint && npm run build",
38 "rollup": "rollup -c ./rollup.config.js",
39 "test": "npm run lint && npm run build:test && npm run jest",
40 "ts": "npm run clean && tsc",
41 "watch": "npm run ts -- --watch"
42 },
43 "dependencies": {},
44 "devDependencies": {
45 "@reallyland/tsconfig": "^1.0.0",
46 "@reallyland/tslint-config": "^1.1.1",
47 "@types/jest": "^24.0.22",
48 "@types/node": "^12.12.6",
49 "jest": "^24.9.0",
50 "rollup": "^1.26.3",
51 "rollup-plugin-filesize": "^6.2.1",
52 "rollup-plugin-terser": "^5.1.2",
53 "rollup-plugin-tslint": "^0.2.2",
54 "rollup-plugin-typescript2": "^0.25.2",
55 "shx": "^0.3.2",
56 "tslint": "^5.20.1",
57 "typescript": "^3.7.2"
58 },
59 "engines": {
60 "node": ">= 8.16.0",
61 "npm": ">= 6.4.1"
62 },
63 "publishConfig": {
64 "access": "public"
65 }
66}