forked from k14v/i18njs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.05 KB
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
{
"name": "@k14v/i18njs",
"version": "0.1.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",
"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": "git@github.com:k14v/i18njs.git"
},
"keywords": [
"i18n",
"l10n"
],
"author": {
"name": "k14v",
"url": "https://github.com/k14v"
},
"contributors": [
{
"name": "Rubeniskov",
"email": "me@rubeniskov.com",
"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.4",
"@k14v/rexpmat": "0.0.1",
"mem": "5.1.1",
"printf": "0.5.1"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/node": "7.5.5",
"@babel/polyfill": "7.4.4",
"@babel/preset-env": "7.5.5",
"@babel/register": "7.5.5",
"ava": "2.2.0",
"babel-eslint": "10.0.2",
"codecov": "3.5.0",
"eslint": "6.1.0",
"eslint-plugin-import": "2.18.2",
"husky": "3.0.1",
"nyc": "14.1.1",
"release-it": "12.3.3",
"sinon": "7.3.2"
}
}