-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.92 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
{
"name": "i18n-mongo",
"version": "1.1.5",
"description": "Node language manager with t-function",
"main": "index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"build": "npm run clean && npm run build-babel",
"build-babel": "babel src -d build",
"clean": "rimraf build && mkdir build",
"cover": "npm run pretest && ./node_modules/.bin/babel-node ./node_modules/babel-istanbul/lib/cli.js cover ./node_modules/.bin/_mocha -- test/test.js",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"cover-report": "./node_modules/.bin/babel-node ./node_modules/babel-istanbul/lib/cli.js cover ./node_modules/.bin/_mocha -- test/test.js; opn ./coverage/lcov-report/index.html",
"lint": "./node_modules/.bin/eslint 'src/**/*.js' --ignore-path .eslintignore",
"lint-report": "./node_modules/.bin/eslint 'src/**/*.js' --ignore-path .eslintignore -f ./node_modules/eslint-html-reporter/reporter.js -o logs/eslint-report.html || opn ./logs/eslint-report.html",
"plato": "plato -r -d logs/plato -t 'JSObjects' -e .eslintrc src/ && opn logs/plato/index.html",
"prepublish": "npm run lint-report && npm run cover-report && npm run build",
"pretest": "nc -zvv localhost 27017 || mongod --fork --logpath /dev/null",
"stop-mongo": "mongo admin --eval 'db.shutdownServer()' > /dev/null",
"test": "./node_modules/.bin/_mocha test/test.js --timeout 15000 --require @babel/register --require @babel/polyfill"
},
"keywords": [
"node",
"language",
"t",
"translate",
"i18n",
"lang",
"mongodb",
"mongo",
"mongoose"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/appfeel/i18n-mongo.git"
},
"bugs": {
"url": "https://github.com/appfeel/i18n-mongo/issues"
},
"homepage": "https://github.com/appfeel/i18n-mongo#readme",
"author": "Miquel Martín (AppFeel)",
"license": "EUPL-1.1",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-istanbul": "0.12.2",
"chai": "3.5.0",
"coveralls": "3.0.4",
"eslint": "6.8.0",
"eslint-config-airbnb": "14.0.0",
"eslint-html-reporter": "0.7.3",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jsx-a11y": "3.0.2",
"eslint-plugin-react": "6.9.0",
"express": "4.17.1",
"mocha": "6.1.4",
"opn-cli": "3.1.0",
"sinon": "1.17.7",
"supertest": "3.0.0",
"wtfnode": "0.8.0"
},
"dependencies": {
"body-parser": "1.19.0",
"clone": "2.1.0",
"handlebars": "4.7.5",
"jsobjects": "1.0.11",
"moment": "2.24.0",
"mongoose": "5.7.5"
}
}