forked from yargs/y18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 837 Bytes
/
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
{
"name": "y18n",
"version": "4.0.0",
"description": "the bare-bones internationalization library used by yargs",
"keywords": [
"i18n",
"internationalization",
"yargs"
],
"homepage": "https://github.com/yargs/y18n",
"bugs": {
"url": "https://github.com/yargs/y18n/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:yargs/y18n.git"
},
"license": "ISC",
"author": "Ben Coe <[email protected]>",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"fix": "standard --fix",
"coverage": "c8 --check-coverage report",
"pretest": "standard",
"test": "c8 mocha"
},
"devDependencies": {
"c8": "^7.3.0",
"chai": "^4.0.1",
"mocha": "^8.0.0",
"rimraf": "^3.0.2",
"standard": "^14.3.4"
},
"engines": {
"node": ">=10"
}
}