-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "@aissaoui-ahmed/accents",
"version": "1.0.5-2",
"description": "Check or remove accents from a string use CLI or function, Support multi languages.",
"module": "./src/index.js",
"main": "./lib/index.js",
"export": {
".": "./src/index.js",
"./check": "./src/check.js",
"./remove": "./src/remove.js",
"./hasAccent": "./src/hasAccent.js"
},
"bin": {
"accent": "./bin/accents.js"
},
"scripts": {
"prepare": "./node_modules/.bin/babel src -d lib",
"lint": "eslint ."
},
"keywords": [
"accents",
"remove",
"check"
],
"author": "Aissaoui Ahmed <[email protected]>",
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aissaoui-Ahmed/accents.git"
},
"bugs": {
"url": "https://github.com/Aissaoui-Ahmed/accents/issues"
},
"homepage": "https://github.com/Aissaoui-Ahmed/accents#readme",
"dependencies": {
"yargs": "^15.4.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}