UNPKG

1.76 kBJSONView Raw
1{
2 "name": "normalize-diacritics",
3 "version": "0.5.1",
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 "index.js",
22 "index.mjs",
23 "index.d.ts"
24 ],
25 "main": "./index",
26 "scripts": {
27 "build": "npm run build:cjs && npm run build:esm && rm -rf dist/ && echo \"> [build] Done!\"",
28 "build:cjs": "npm run lint && rm -rf dist/ && tsc -p tsconfig.json && mv dist/index.js dist/index.d.ts . && echo \"> [cjs] Done!\"",
29 "build:esm": "npm run lint && rm -rf dist/ && tsc -p tsconfig.esm.json && mv dist/index.js ./index.mjs && echo \"> [esm] Done!\"",
30 "demo": "node demo/index.js",
31 "lint": "tslint --project tsconfig.json --config tslint.prod.json --format stylish 'src/**/*.ts*'",
32 "lint:debug": "tslint --project tsconfig.json --config tslint.json --format stylish 'src/**/*.ts*'",
33 "prepublishOnly": "npm run lint && npm run build",
34 "test": "jest --config ./.jestrc.json"
35 },
36 "dependencies": {},
37 "devDependencies": {
38 "@messageflow/tslint-config": "^1.1.0",
39 "@types/jest": "^23.3.1",
40 "babel-plugin-transform-object-rest-spread": "^6.26.0",
41 "babel-preset-env": "^1.6.1",
42 "jest": "^23.5.0",
43 "ts-jest": "^23.1.4",
44 "tslint": "^5.11.0",
45 "typescript": "^3.0.1"
46 },
47 "engines": {
48 "node": ">= 8.9.0",
49 "npm": ">= 5.5.1"
50 },
51 "publishConfig": {
52 "access": "public"
53 }
54}