-
-
Notifications
You must be signed in to change notification settings - Fork 421
/
package.json
75 lines (75 loc) · 1.7 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
{
"name": "i18n",
"description": "lightweight translation module with dynamic json storage",
"version": "0.15.0",
"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": {
"@messageformat/core": "^3.0.0",
"debug": "^4.3.3",
"fast-printf": "^1.6.9",
"make-plural": "^7.0.0",
"math-interval-parser": "^2.0.1",
"mustache": "^4.2.0"
},
"devDependencies": {
"async": "^3.2.3",
"cookie-parser": "^1.4.6",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.17.2",
"husky": "^8.0.1",
"lint-staged": "^12.3.2",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"should": "^13.2.3",
"sinon": "^14.0.0",
"yaml": "^2.1.0",
"zombie": "^6.1.4"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "mocha --exit",
"test-ci": "nyc mocha -- --exit",
"coverage": "nyc report --reporter=lcov"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}