-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "@outofsync/localize",
"version": "1.3.0",
"description": "A basic i18n module for Node.js",
"main": "index.js",
"types": "index.d.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "npm run lint && npm run test:only",
"test:only": "nyc mocha --config .mocharc.js --exit",
"test:watch": "nodemon --exec mocha --bail",
"coverage": "nyc --reporter=lcov mocha --exit && cat ./coverage/lcov.info | codacy-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OutOfSyncStudios/localize.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"i18n",
"l10n",
"internationalization",
"localization"
],
"author": "Jay Reardon",
"license": "MIT",
"bugs": {
"url": "https://github.com/OutOfSyncStudios/localize/issues"
},
"homepage": "https://github.com/OutOfSyncStudios/localize#readme",
"devDependencies": {
"chai": "^4.3.4",
"codacy-coverage": "^3.4.0",
"eslint": "^8.17.0",
"gulp-eslint": "^6.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
},
"dependencies": {
"lodash.defaultsdeep": "^4.6.1",
"lodash.foreach": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.isnil": "^4.0.0",
"lodash.merge": "^4.6.2"
}
}