-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.25 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@k14v/i18njs",
"version": "0.3.1",
"description": "Library to internationalize literals",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=lcov --reporter=html --reporter=text ava --verbose",
"test:watch": "ava --watch",
"build": "babel src --out-dir=lib --ignore=**/*.spec.js",
"watch": "npm run build -- --watch",
"prepublishOnly": "npm run build && npm run lint && npm run test",
"lint": "eslint src examples",
"lint:fix": "eslint src examples --fix",
"example": "npm run build && babel-node examples/resolver.js",
"docs": "documentation build src/i18n.js -f md --shallow --markdown-toc=false --github",
"coverage": "codecov",
"release": "release-it -n"
},
"homepage": "https://github.com/k14v/i18njs#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm test"
}
},
"repository": {
"type": "git",
"url": "[email protected]:k14v/i18njs.git"
},
"keywords": [
"i18n",
"l10n",
"translate",
"internationalization",
"accessibility"
],
"author": {
"name": "k14v",
"url": "https://github.com/k14v"
},
"contributors": [
{
"name": "Rubeniskov",
"email": "[email protected]",
"url": "https://rubeniskov.com"
},
{
"name": "Kelvur",
"url": "https://github.com/Kelvur"
}
],
"license": "MIT",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"ava": {
"files": [
"src/**/*.spec.js"
],
"require": [
"@babel/register",
"@babel/polyfill"
]
},
"nyc": {
"exclude": [
"src/*.spec.js"
]
},
"dependencies": {
"@k14v/printf-tokenize": "0.0.5",
"@k14v/rexpmat": "0.0.3",
"mem": "^6.0.1",
"printf": "^0.5.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"ava": "^3.5.2",
"babel-eslint": "^10.1.0",
"codecov": "^3.6.5",
"documentation": "^12.1.4",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.3",
"nyc": "^15.0.1",
"release-it": "^13.5.1",
"sinon": "^9.0.1"
}
}