-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
41 lines (41 loc) · 1.31 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
{
"name": "unidecode",
"description": "ASCII transliterations of Unicode text",
"keywords": [
"unidecode",
"unicode",
"utf8"
],
"version": "1.1.0",
"homepage": "https://blog.fgribreau.com/2012/05/unidecode-for-javascript-nodejs.html",
"repository": "git@github.com:FGRibreau/node-unidecode.git",
"author": "Francois-Guillaume Ribreau <npm@fgribreau.com> (https://fgribreau.com)",
"main": "./unidecode.js",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/FGRibreau/node-unidecode/blob/master/LICENSE"
}
],
"scripts": {
"test": "mocha",
"lint": "jshint *.js */*.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog-git": "npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master",
"release-major": "npm run test && npm-release major && npm run changelog-git",
"release-minor": "npm run test && npm-release minor && npm run changelog-git",
"release-patch": "npm run test && npm-release patch && npm run changelog-git"
},
"engines": {
"node": ">= 0.4.12"
},
"devDependencies": {
"conventional-changelog-cli": "^4.1.0",
"jshint": "^2.5.11",
"mocha": "^10.3.0",
"npm-release": "^1.0.0"
},
"volta": {
"node": "20.11.1"
}
}