forked from mashpie/i18n-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.67 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
{
"name": "i18n",
"description": "lightweight translation module with dynamic json storage",
"version": "0.13.2",
"homepage": "http://github.com/mashpie/i18n-node",
"repository": {
"type": "git",
"url": "http://github.com/mashpie/i18n-node.git"
},
"author": "Marcus Spiegel <[email protected]>",
"funding": {
"url": "https://github.com/sponsors/mashpie"
},
"main": "./index",
"files": [
"i18n.js",
"index.js",
"SECURITY.md"
],
"keywords": [
"template",
"i18n",
"l10n"
],
"directories": {
"lib": "."
},
"dependencies": {
"debug": "^4.1.1",
"make-plural": "^6.2.2",
"math-interval-parser": "^2.0.1",
"messageformat": "^2.3.0",
"mustache": "^4.0.1",
"sprintf-js": "^1.1.2"
},
"devDependencies": {
"async": "^3.2.0",
"cookie-parser": "^1.4.5",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.17.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mocha": "^7.2.0",
"prettier": "^2.0.5",
"should": "^13.2.3",
"sinon": "^9.0.3",
"zombie": "^6.1.4"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"lint": "eslint '**/*.js'",
"test": "npm run lint && mocha --exit",
"test-ci": "npm run lint && istanbul cover mocha -- --exit"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}